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

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

:root {
  --c-dark: #183306;
  --c-dark2: #1f4408;
  --c-bg: #79a525;
  --c-bg2: #6c9420;
  --c-btn-orange: #ee5b07;
  --c-btn-gold: #edc61d;
  --c-btn-gold-hover: #d4ae10;
  --c-btn-orange-hover: #d44f05;
  --c-white: #ffffff;
  --c-light: #f5f0e8;
  --c-text-dark: #1a1a1a;
  --c-text-light: #f0ead8;
  --c-border: rgba(255,255,255,0.18);
  --c-card: rgba(24,51,6,0.82);
  --c-card2: rgba(255,255,255,0.10);
  --radius: 12px;
  --radius-sm: 7px;
  --shadow: 0 4px 24px rgba(0,0,0,0.22);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--c-dark);
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text-dark);
  line-height: 1.6;
  min-height: 100vh;
}



h1, h2, h3, h4, h5 {
  font-family: 'Alfa Slab One', serif;
  line-height: 1.25;
  color: var(--c-light);
}

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

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

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.box { border-radius: var(--radius); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: 'Alfa Slab One', serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.28); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--c-btn-gold); color: var(--c-dark); }
.btn--gold:hover { background: var(--c-btn-gold-hover); color: var(--c-dark); }
.btn--orange { background: var(--c-btn-orange); color: var(--c-white); }
.btn--orange:hover { background: var(--c-btn-orange-hover); color: var(--c-white); }
.btn--outline { background: transparent; color: var(--c-btn-gold); border: 2px solid var(--c-btn-gold); }
.btn--outline:hover { background: var(--c-btn-gold); color: var(--c-dark); }
.btn--lg { padding: 14px 30px; font-size: 1.05rem; }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }
.btn--pulse {
  animation: btnPulse 2.2s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237,198,29,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(237,198,29,0); }
}

.section-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--c-light);
  margin-bottom: 8px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.section-sub {
  text-align: center;
  color: var(--c-text-light);
  margin-bottom: 32px;
  font-size: 0.97rem;
  opacity: 0.88;
}
.section-pad { padding: 56px 0; }
.section-pad-sm { padding: 36px 0; }

.header {
  background: var(--c-dark);
  position: static;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner nav {
  display: contents;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.header-nav li a:hover { background: rgba(255,255,255,0.1); color: var(--c-btn-gold); }
.header-nav li a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-jackpot {
  background: linear-gradient(135deg, var(--c-dark2), #2a6010);
  border: 1px solid var(--c-btn-gold);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-btn-gold);
  font-family: 'Alfa Slab One', serif;
  font-size: 0.82rem;
}
.header-jackpot-amount {
  font-size: 1.0rem;
  color: var(--c-btn-gold);
  text-shadow: 0 0 8px rgba(237,198,29,0.6);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--c-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero {
  position: relative;
  background: var(--c-dark);
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/huff-n-puff-hero.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,51,6,0.92) 0%, rgba(24,51,6,0.6) 55%, rgba(24,51,6,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 56px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-btn-orange);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--c-white);
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  line-height: 1.15;
}
.hero-desc {
  color: var(--c-text-light);
  font-size: 1.02rem;
  margin-bottom: 24px;
  line-height: 1.65;
  opacity: 0.92;
}
.hero-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-tile {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
}
.hero-tile:hover { background: rgba(237,198,29,0.15); transform: translateY(-2px); }
.hero-tile-label { font-size: 0.7rem; color: var(--c-text-light); opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-tile-val { font-family: 'Alfa Slab One', serif; font-size: 0.95rem; color: var(--c-btn-gold); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.game-details-section {
  background: var(--c-dark);
  padding: 48px 0;
}
.gd-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.gd-demo {
  flex: 0 0 420px;
  position: sticky;
  top: 80px;
}
.demo-frame-wrap {
  background: var(--c-dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(237,198,29,0.3);
  box-shadow: var(--shadow);
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
.demo-frame-cover {
  padding: 14px;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
}
.gd-table-wrap { flex: 1 1 0; min-width: 0; }
.gd-table-title {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.2rem;
  color: var(--c-btn-gold);
  margin-bottom: 14px;
}
.gd-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.gd-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.gd-table tr:hover td { background: rgba(237,198,29,0.08); }
.gd-table td {
  padding: 9px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  vertical-align: middle;
}
.gd-table td:first-child {
  color: rgba(240,234,216,0.72);
  font-weight: 600;
  width: 44%;
  white-space: nowrap;
}

.gd-table-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-btn-gold);
  vertical-align: middle;
  margin-right: 8px;
}
.gd-table td:last-child { color: var(--c-light); font-weight: 600; }

.advantages-section { padding: 52px 0; }
.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.adv-icon {
  width: 52px;
  height: 52px;
  background: rgba(237,198,29,0.15);
  border: 2px solid rgba(237,198,29,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-btn-gold);
}
.adv-icon svg { width: 26px; height: 26px; }
.adv-card h3 { font-size: 0.95rem; color: var(--c-light); font-family: 'Alfa Slab One', serif; }
.adv-card p { font-size: 0.83rem; color: var(--c-text-light); opacity: 0.85; line-height: 1.55; }

.demo-section { background: var(--c-dark); padding: 52px 0; }
.demo-big-wrap {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  border: 2px solid rgba(237,198,29,0.25);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.demo-big-wrap iframe { width: 100%; height: 480px; border: none; display: block; }
.demo-cta-bar {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
.demo-cta-bar p { color: var(--c-text-light); font-size: 0.88rem; opacity: 0.85; }

.strategies-section { padding: 52px 0; }
.strategies-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.strat-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.strat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.strat-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.strat-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.strat-tag {
  display: inline-block;
  background: rgba(237,198,29,0.15);
  color: var(--c-btn-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(237,198,29,0.3);
  width: fit-content;
}
.strat-body h3 { font-size: 1.05rem; color: var(--c-light); }
.strat-body p { font-size: 0.85rem; color: var(--c-text-light); opacity: 0.88; line-height: 1.55; flex: 1; }
.strat-body .btn { margin-top: auto; align-self: flex-start; }

.content-section { padding: 52px 0; }
.content-block {
  background: var(--c-light);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: var(--c-text-dark);
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}
.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5 {
  color: var(--c-dark);
  font-family: 'Alfa Slab One', serif;
  margin: 20px 0 10px;
  line-height: 1.3;
}
.content-block h1 { font-size: 1.6rem; }
.content-block h2 { font-size: 1.3rem; }
.content-block h3 { font-size: 1.1rem; }
.content-block p { margin-bottom: 14px; line-height: 1.7; font-size: 0.97rem; color: #2a2a2a; }
.content-block a { color: var(--c-dark); text-decoration: underline; }
.content-block a:hover { color: var(--c-btn-orange); }
.content-block ul, .content-block ol { margin: 10px 0 16px 22px; }
.content-block li { margin-bottom: 7px; line-height: 1.65; font-size: 0.95rem; }
.content-block ul li { list-style: disc; }
.content-block ol li { list-style: decimal; }
.content-block strong { font-weight: 700; }
.content-block em { font-style: italic; }
.content-block blockquote {
  border-left: 4px solid var(--c-btn-gold);
  padding: 12px 18px;
  margin: 14px 0;
  background: rgba(237,198,29,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #333;
  font-style: italic;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-block table th,
.content-block table td {
  padding: 9px 13px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 0.9rem;
}
.content-block table th { background: var(--c-dark); color: var(--c-light); font-family: 'Alfa Slab One', serif; font-size: 0.85rem; }
.content-block table tr:nth-child(even) td { background: #f5f0e8; }
.content-block img { border-radius: var(--radius-sm); margin: 12px 0; max-width: 100%; }
.content-block hr { border: none; border-top: 1px solid #ddd; margin: 20px 0; }
.content-block pre { background: #1a1a1a; color: #f0f0f0; padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; font-size: 0.88rem; margin: 14px 0; }
.content-block code { background: rgba(0,0,0,0.08); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 0.9em; }

.faq-section { padding: 52px 0; }
.faq-list { margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(237,198,29,0.4); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.faq-q-text { font-weight: 700; font-size: 0.93rem; color: var(--c-light); line-height: 1.4; }
.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(237,198,29,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-btn-gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 18px 15px;
  color: var(--c-text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.9;
}
.faq-item.open .faq-a { display: block; }

.author-section { padding: 52px 0; }
.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.author-photo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-family: 'Alfa Slab One', serif; font-size: 1.3rem; color: var(--c-light); margin-bottom: 2px; }
.author-title { font-size: 0.85rem; color: var(--c-btn-gold); font-weight: 600; margin-bottom: 10px; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
}
.author-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--c-text-light); opacity: 0.82; }
.author-meta-item svg { width: 14px; height: 14px; color: var(--c-btn-gold); flex-shrink: 0; }
.author-bio { font-size: 0.88rem; color: var(--c-text-light); line-height: 1.65; margin-bottom: 14px; opacity: 0.9; }
.author-social { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--c-text-light);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.author-social a:hover { background: rgba(237,198,29,0.2); color: var(--c-btn-gold); }
.author-social a svg { width: 15px; height: 15px; }
.author-dates { font-size: 0.77rem; color: var(--c-text-light); opacity: 0.65; margin-top: 10px; }

.footer {
  background: var(--c-dark);
  margin-top: auto;
  border-radius: 0;
}
.footer-top {
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.footer-logo img { height: 48px; width: auto; }
.footer-logo-link {display: block;width: fit-content;}
.footer-brand-desc { font-size: 0.82rem; color: rgba(240,234,216,0.62); line-height: 1.6; }
.footer-nav-col h4 { font-family: 'Alfa Slab One', serif; font-size: 0.9rem; color: var(--c-btn-gold); margin-bottom: 12px; }
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-nav-col ul li a { color: rgba(240,234,216,0.72); font-size: 0.83rem; transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: var(--c-btn-gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: var(--c-btn-gold); font-size: 0.85rem; }
.footer-mid {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  height: 38px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240,234,216,0.65);
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
}
.footer-logo-item:hover { background: rgba(255,255,255,0.12); color: var(--c-light); }
.footer-logo-item img { height: 22px; width: auto; max-width: 80px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.6); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240,234,216,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-badge svg { width: 14px; height: 14px; color: var(--c-btn-gold); }
.trust-badge img { width: auto; height: 14px; }
.flag-au { width: 22px; height: 16px; border-radius: 2px; vertical-align: middle; }
.footer-social { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,234,216,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--c-btn-gold); color: var(--c-dark); }
.footer-social a svg { width: 17px; height: 17px; }
.footer-bottom {
  padding: 18px 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-copyright { font-size: 0.8rem; color: rgba(240,234,216,0.5); }
.footer-legal { font-size: 0.73rem; color: rgba(240,234,216,0.4); line-height: 1.6; max-width: 800px; margin: 0 auto; }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--c-btn-orange);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--c-dark) 0%, #1f4408 100%);
  border-top: 2px solid var(--c-btn-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.bonus-widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bonus-widget-text span:first-child {
  font-family: 'Alfa Slab One', serif;
  font-size: 0.88rem;
  color: var(--c-btn-gold);
  white-space: nowrap;
}
.bonus-widget-text span:last-child { font-size: 0.75rem; color: rgba(240,234,216,0.7); }
.bonus-widget-actions { display: flex; align-items: center; gap: 10px; }
.bonus-widget-close {
  background: none;
  border: none;
  color: rgba(240,234,216,0.5);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.bonus-widget-close:hover { color: var(--c-text-light); }

.info-page-content { padding: 48px 0 60px; }
.info-page-content .content-block { max-width: 860px; }

.breadcrumb {
  padding: 10px 0;
  background: rgba(0,0,0,0.15);
}
.breadcrumb-list { list-style: none; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(240,234,216,0.6); }
.breadcrumb-list li a { color: var(--c-btn-gold); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: rgba(240,234,216,0.3); }

.wave-divider { display: block; width: 100%; height: 40px; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 100%; }

@media (max-width: 960px) {
  .gd-layout { flex-direction: column; }
  .gd-demo { flex: none; width: 100%; position: static; }
  .gd-demo .demo-frame-wrap iframe { height: 260px; }
}
@media (max-width: 900px) {
.header-jackpot {display: none;}
.header-nav li:first-child {display: none;}
}
@media (max-width: 768px) {
  .header-nav {
    display: none;           
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 16px 20px;  
    gap: 6px;
    overflow-y: auto;
    z-index: 999;
  }
  .header-nav.active { display: flex; }
  .header-nav li a { font-size: 1.0rem; padding: 12px 14px; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .header-jackpot { display: none; }
  body.nav-open { overflow: hidden; }

  .hero-content { padding: 36px 0 40px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-tiles { gap: 8px; }
  .hero-tile { min-width: 68px; padding: 8px 10px; }

  .author-card { flex-direction: column; align-items: center; text-align: center; padding: 22px 18px; }
  .author-meta { justify-content: center; }
  .author-social { justify-content: center; }

  .strategies-grid { flex-direction: column; align-items: center; }
  .strat-card { max-width: 100%; }

  .content-block { padding: 22px 18px; }

  .footer-grid { flex-direction: column; }
  .bonus-widget { flex-wrap: wrap; }
  .demo-big-wrap iframe { height: 280px; }
  .advantages-grid { justify-content: stretch; }
  .adv-card { max-width: 100%; flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .header-inner { padding: 8px 12px; }
  .header-logo img { height: 38px; }
  .header-actions .btn--sm { padding: 7px 12px; font-size: 0.75rem; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease both; }
.fade-in-up-d1 { animation-delay: 0.1s; }
.fade-in-up-d2 { animation-delay: 0.2s; }
.fade-in-up-d3 { animation-delay: 0.3s; }

@keyframes jackpotFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}
.jackpot-flicker { animation: jackpotFlicker 1.5s ease-in-out infinite; }

.scroll-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

.wp-block-group { display: block; }
.wp-block-separator { border: none; border-top: 1px solid transparent; height: 0; margin: 0; }
.entry-content { display: contents; }
.elementor-section { display: contents; }
#wpadminbar { display: none !important; }
.site-branding { display: contents; }
.wp-caption { display: contents; }

.xk7pQr2 { color: transparent; font-size: 0; }
.b4nVwL9 { display: none; pointer-events: none; }
.z3mCqT5 { visibility: hidden; width: 0; height: 0; overflow: hidden; }
.rp8YjK1::before { content: ''; display: none; }
.qn2FhX7 { opacity: 0; position: absolute; left: -9999px; }
