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

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

:root {
  --c-bg: #3e4464;
  --c-nav: #3a3e51;
  --c-nav-dark: #2e3143;
  --c-gold: #af8c2f;
  --c-gold-hover: #c9a23a;
  --c-green: #3d8f58;
  --c-green-hover: #4aab6a;
  --c-text: #e8e9f0;
  --c-text-muted: #a9adc7;
  --c-border: rgba(255,255,255,0.08);
  --c-card: rgba(58,62,81,0.85);
  --c-card-alt: rgba(45,49,66,0.90);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; background: var(--c-bg); overflow-x: hidden; }
body {
  font-family: 'Rubik', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold-hover); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: #fff; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: .5rem; }
p { margin-bottom: .9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--c-green); color: #fff; }
.btn--green:hover { background: var(--c-green-hover); color: #fff; }
.btn--gold { background: var(--c-gold); color: #1a1b22; }
.btn--gold:hover { background: var(--c-gold-hover); color: #1a1b22; }
.btn--outline { background: transparent; border: 2px solid var(--c-gold); color: var(--c-gold); }
.btn--outline:hover { background: var(--c-gold); color: #1a1b22; }
.btn--sm { padding: 7px 16px; font-size: .85rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }

.site-header {
  background: var(--c-nav);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; }
.header-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-logo .logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }

.jackpot-ticker {
  background: linear-gradient(90deg, rgba(175,140,47,0.15), rgba(175,140,47,0.08));
  border: 1px solid rgba(175,140,47,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .82rem;
  color: var(--c-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.jackpot-ticker .jt-icon { animation: pulse-gold 1.5s ease-in-out infinite; }
.jackpot-ticker--mobile { display: none; margin: 0 16px 10px; justify-content: center; }
@keyframes pulse-gold { 0%,100%{opacity:1} 50%{opacity:.5} }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--c-text-muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.header-nav .nav-icon { width: 16px; height: 16px; flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity 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); }

.mobile-nav {
  display: none;
  background: var(--c-nav-dark);
  border-top: 1px solid var(--c-border);
  padding: 12px 0 16px;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
  padding: 10px 16px;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 0 8px 2px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-nav .nav-icon { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav-cta { display: flex; gap: 10px; padding: 10px 16px 0; }
.mobile-nav-cta .btn { flex: 1; }

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-nav-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/chicken-road-2-banner.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,32,48,0.92) 35%, rgba(30,32,48,0.55) 70%, rgba(30,32,48,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(175,140,47,0.18);
  border: 1px solid rgba(175,140,47,0.4);
  border-radius: 20px;
  color: var(--c-gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); color: #fff; margin-bottom: .6rem; }
.hero-desc { font-size: 1rem; color: var(--c-text-muted); margin-bottom: 1.5rem; line-height: 1.7; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--c-gold); }
.rating-score { font-size: 1.1rem; font-weight: 700; color: #fff; }
.rating-count { font-size: .82rem; color: var(--c-text-muted); }

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.hero-tile {
  background: rgba(58,62,81,0.75);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tile-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--c-gold); }
.hero-tile-label { font-size: .75rem; color: var(--c-text-muted); }
.hero-tile-value { font-size: .92rem; font-weight: 700; color: #fff; }

.section { padding: 48px 0; }
.section--sm { padding: 28px 0; }
.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg { width: 28px; height: 28px; color: var(--c-gold); flex-shrink: 0; }
.section-subtitle { color: var(--c-text-muted); margin-bottom: 2rem; font-size: .95rem; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 0 2.5rem;
  opacity: .35;
}

.breadcrumbs {
  background: var(--c-nav-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: .82rem;
  color: var(--c-text-muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; opacity: .5; }
.breadcrumbs a { color: var(--c-gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current] { color: #fff; }

.toc-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 2rem;
}
.toc-block h3 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--c-gold); }
.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  list-style: none;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
  font-size: .9rem;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.toc-list li a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.toc-list li a svg { width: 16px; height: 16px; color: var(--c-gold); flex-shrink: 0; }

.demo-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--c-nav-dark);
  gap: 12px;
  flex-wrap: wrap;
}
.demo-header h3 { margin: 0; font-size: 1rem; }
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--c-nav-dark);
  flex-wrap: wrap;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 2rem;
}
.adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(175,140,47,0.3); }
.adv-icon { width: 44px; height: 44px; background: rgba(175,140,47,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.adv-icon svg { width: 24px; height: 24px; color: var(--c-gold); }
.adv-card h4 { font-size: .95rem; margin-bottom: .4rem; }
.adv-card p { font-size: .85rem; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

.strat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}
.strat-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.strat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.strat-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--c-nav-dark) 0%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strat-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.strat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--c-gold);
  color: #1a1b22;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.strat-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.strat-body h4 { font-size: 1rem; margin-bottom: 4px; }
.strat-body p { font-size: .85rem; color: var(--c-text-muted); flex: 1; margin: 0; }
.strat-body .btn { margin-top: auto; align-self: flex-start; }

.content-review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.content-review h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.content-review h3 { color: var(--c-gold); font-size: 1.15rem; margin: 1.5rem 0 .6rem; }
.content-review h4 { color: #d9dae8; font-size: 1rem; margin: 1.2rem 0 .4rem; }
.content-review p { color: var(--c-text); line-height: 1.7; margin-bottom: .9rem; }
.content-review ul, .content-review ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-review li { margin-bottom: .4rem; color: var(--c-text); line-height: 1.6; }
.content-review table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; overflow-x: auto; display: block; }
.content-review th { background: var(--c-nav-dark); color: var(--c-gold); font-weight: 600; padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); font-size: .88rem; }
.content-review td { padding: 9px 14px; border: 1px solid var(--c-border); color: var(--c-text); font-size: .88rem; vertical-align: top; }
.content-review tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.content-review a { color: var(--c-gold); }
.content-review a:hover { text-decoration: underline; }
.content-review strong { color: #fff; font-weight: 600; }
.content-review blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 18px;
  margin: 1rem 0;
  background: rgba(175,140,47,0.07);
  border-radius: 0 8px 8px 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.faq-block { margin-bottom: 2rem; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(175,140,47,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Rubik', sans-serif;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--c-gold); transition: transform var(--transition); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 600px; padding: 0 20px 16px; }

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 2rem;
}
.author-inner { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-gold);
  background: var(--c-nav-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.author-photo-placeholder { width: 90px; height: 90px; border-radius: 50%; background: var(--c-nav-dark); border: 3px solid var(--c-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-photo-placeholder svg { width: 40px; height: 40px; color: var(--c-text-muted); }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.author-role { font-size: .85rem; color: var(--c-gold); font-weight: 500; margin-bottom: 8px; }
.author-location { font-size: .82rem; color: var(--c-text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.author-bio { font-size: .88rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 12px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .8rem; color: var(--c-text-muted); margin-bottom: 12px; }
.author-meta span { display: flex; align-items: center; gap: 4px; }
.author-meta strong { color: #fff; }
.author-social { display: flex; gap: 8px; flex-wrap: wrap; }
.author-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: .8rem;
  color: var(--c-text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--c-border);
}
.author-social a:hover { background: rgba(175,140,47,0.15); color: var(--c-gold); border-color: rgba(175,140,47,0.3); }
.author-social svg { width: 14px; height: 14px; }
.author-dates { display: flex; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: var(--c-text-muted); margin-top: 8px; border-top: 1px solid var(--c-border); padding-top: 10px; }
.author-dates time { color: var(--c-text); font-weight: 500; }

.site-footer {
  background: var(--c-nav-dark);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand img { height: 40px; margin-bottom: 10px; }
.footer-brand p { font-size: .82rem; color: var(--c-text-muted); line-height: 1.6; }
.footer-brand .footer-contact { font-size: .82rem; color: var(--c-text-muted); margin-top: 10px; }
.footer-brand .footer-contact a { color: var(--c-gold); }
.footer-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }
.footer-col h5 { font-size: .85rem; color: #fff; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; color: var(--c-text-muted); font-size: .83rem; margin-bottom: 6px; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--c-gold); }

.footer-trust {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
}
.footer-trust-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color var(--transition);
}
.trust-badge:hover { border-color: rgba(175,140,47,0.3); }
.trust-badge svg { width: 14px; height: 14px; color: var(--c-gold); }
.trust-flag { font-size: 1.3rem; }

.footer-payments {
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.footer-payments h6 { font-size: .78rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.payment-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-logo {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .75rem;
  color: var(--c-text);
  font-weight: 600;
  border: 1px solid var(--c-border);
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(175,140,47,0.15); color: var(--c-gold); border-color: rgba(175,140,47,0.3); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: .78rem; color: var(--c-text-muted); }
.footer-copyright strong { color: var(--c-text); }
.footer-legal { font-size: .75rem; color: var(--c-text-muted); max-width: 680px; line-height: 1.55; }
.footer-legal a { color: var(--c-gold); }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--c-nav-dark);
  border-top: 2px solid var(--c-gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transition: transform .3s ease;
}
.sticky-widget.hidden { transform: translateY(100%); }
.sticky-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.sticky-widget-logo img { height: 34px; }
.sticky-widget-bonus { flex: 1; min-width: 180px; }
.sticky-widget-bonus .bonus-label { font-size: .72rem; color: var(--c-text-muted); }
.sticky-widget-bonus .bonus-value { font-size: 1rem; font-weight: 700; color: var(--c-gold); }
.sticky-widget-actions { display: flex; gap: 8px; align-items: center; }
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  line-height: 0;
  transition: color var(--transition);
}
.widget-close:hover { color: #fff; }
.widget-close svg { width: 16px; height: 16px; }

.box {
  background: transparent;
}

.page-hero {
  background: var(--c-nav-dark);
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { margin-bottom: .4rem; }
.page-hero p { color: var(--c-text-muted); font-size: .95rem; }

.info-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.info-content h2 { font-size: 1.3rem; margin: 1.5rem 0 .6rem; color: var(--c-gold); }
.info-content h3 { font-size: 1.1rem; margin: 1.2rem 0 .4rem; }
.info-content p { font-size: .92rem; line-height: 1.7; color: var(--c-text); margin-bottom: .9rem; }
.info-content ul, .info-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.info-content li { margin-bottom: .4rem; color: var(--c-text); font-size: .92rem; }
.info-content a { color: var(--c-gold); }
.info-content a:hover { text-decoration: underline; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.contact-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.contact-card svg { width: 32px; height: 32px; color: var(--c-gold); margin: 0 auto 10px; }
.contact-card h4 { margin-bottom: 4px; font-size: .95rem; }
.contact-card p { font-size: .85rem; color: var(--c-text-muted); margin: 0; }
.contact-card a { color: var(--c-gold); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--c-text); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text);
  font-family: 'Rubik', sans-serif;
  font-size: .92rem;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-gold); }
.form-control::placeholder { color: var(--c-text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }

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

.wp-block { display: none; visibility: hidden; }
.elementor-hidden-widget { display: none; }
.wpcf7 { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 991px) {
  .header-nav { display: none; }
  .header-cta .btn { display: none; }
  .jackpot-ticker:not(.jackpot-ticker--mobile) { display: none; }
  .jackpot-ticker--mobile { display: flex; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-tiles { grid-template-columns: repeat(2, 1fr); }
  .strat-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 640px) {
  .hero-section { min-height: 420px; }
  .hero-content { padding: 36px 0; }
  .hero-tiles { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta { gap: 8px; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .strat-grid { grid-template-columns: 1fr; }
  .toc-list { grid-template-columns: 1fr; }
  .author-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-social { justify-content: center; }
  .author-meta { justify-content: center; }
  .author-dates { justify-content: center; }
  .content-review { padding: 20px; }
  .sticky-widget-inner { padding: 8px 12px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 32px 0; }
}

@media (max-width: 440px) {
  .adv-grid { grid-template-columns: 1fr; }
  .hero-tiles { grid-template-columns: 1fr; }
}

.xd4f2a { opacity: 1; }
.q8r3b9 { visibility: visible; }
.z1k5m7 { display: block; width: 0; height: 0; overflow: hidden; position: absolute; }
