:root {
  --c-bg: #0b0e1a;
  --c-bg2: #111628;
  --c-bg3: #161c30;
  --c-nav: #0d1120;
  --c-nav2: #0a0d18;
  --c-accent: #e8a020;
  --c-accent2: #f5b730;
  --c-btn-demo: #e8a020;
  --c-btn-demo-h: #f5b730;
  --c-btn-play: #c0392b;
  --c-btn-play-h: #e74c3c;
  --c-btn-reg: #1a7a3a;
  --c-btn-reg-h: #219d4a;
  --c-text: #e8eaf0;
  --c-text-muted: #8a8fa8;
  --c-border: #1e2540;
  --c-card: #131828;
  --c-card2: #0f1422;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,.5);
  --shadow-card: 0 2px 20px rgba(0,0,0,.4);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --trans: .22s ease;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-accent2); }
ul { list-style: none; }

.x9f2a { display: none; }
.wp-block-spacer { display: block; height: 0; }
.entry-content { display: contents; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--demo {
  background: var(--c-btn-demo);
  color: #0b0e1a;
}
.btn--demo:hover { background: var(--c-btn-demo-h); color: #0b0e1a; }

.btn--play {
  background: var(--c-btn-play);
  color: #fff;
}
.btn--play:hover { background: var(--c-btn-play-h); color: #fff; }

.btn--register {
  background: var(--c-btn-reg);
  color: #fff;
}
.btn--register:hover { background: var(--c-btn-reg-h); color: #fff; }

.btn--lg { padding: 15px 38px; font-size: .96rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: .76rem; }

.section-title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--c-text-muted);
  font-size: .95rem;
  margin-bottom: 32px;
}

.sec {
  padding: 64px 0;
}
.sec--alt { background: var(--c-bg2); }
.sec--dark { background: var(--c-nav2); }

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

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-nav);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.hd-logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.hd-logo img { height: 50px; width: auto; }
.hd-logo span {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .06em;
}

.hd-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.hd-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: .83rem;
  font-weight: 500;
  transition: background var(--trans), color var(--trans);
}
.hd-nav a:hover { background: var(--c-border); color: var(--c-accent); text-decoration: none; }
.hd-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

.hd-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hd-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--c-text-muted);
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
}
.hd-online .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #27ae60;
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.lang-select {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: .8rem;
  cursor: pointer;
  transition: border-color var(--trans);
}
.lang-btn:hover { border-color: var(--c-accent); }
.lang-btn img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--c-nav);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 200;
}
.lang-dropdown.open { display: block; animation: fadeIn .15s ease; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--c-text);
  font-size: .82rem;
  transition: background var(--trans);
}
.lang-dropdown a:hover { background: var(--c-border); color: var(--c-text); text-decoration: none; }
.lang-dropdown img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.burger:hover { background: var(--c-border); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  gap: 6px;
}
.mobile-menu.open { display: flex; animation: slideDown .2s ease; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: .9rem;
  transition: background var(--trans);
}
.mobile-menu a:hover { background: var(--c-border); color: var(--c-accent); text-decoration: none; }
.mobile-menu a svg { width: 17px; height: 17px; }
.mobile-menu .mobile-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
  margin-top: 6px;
}

@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/money-train-3-hero-img.avif');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,14,26,.92) 40%, rgba(11,14,26,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,160,32,.18);
  border: 1px solid rgba(232,160,32,.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-title span { color: var(--c-accent); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(232,234,240,.85);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--c-accent);
  font-weight: 800;
}
.hero-stat span { font-size: .78rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }


.bonuses-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-card {
  flex: 1 1 300px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  justify-content: space-around;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,.5); border-color: rgba(232,160,32,.3); }
.bonus-card--top::before { background: linear-gradient(90deg, var(--c-btn-play), var(--c-accent)); }
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--c-accent);
  text-transform: uppercase;
  width: fit-content;
}
.bonus-casino {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.bonus-amount {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1.1;
}
.bonus-amount span { font-size: 1rem; color: var(--c-text-muted); font-weight: 600; }
.bonus-terms { font-size: .78rem; color: var(--c-text-muted); line-height: 1.5; }
.bonus-features { display: flex; flex-direction: column; gap: 6px; }
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: var(--c-text);
}
.bonus-feature svg { width: 15px; height: 15px; color: #27ae60; flex-shrink: 0; }

.slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--trans), transform var(--trans);
}
.slider-dot.active { background: var(--c-accent); transform: scale(1.3); }

.screenshots-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.screenshot-item {
  flex: 1 1 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
}
.screenshot-item:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,.6); }
.screenshot-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,14,26,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.screenshot-item:hover .screenshot-overlay { opacity: 1; }
.screenshot-overlay svg { width: 40px; height: 40px; color: #fff; }


.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);

  transform: scale(0.85);
  transition: transform .25s ease;
  will-change: transform;
}

.lightbox.open img {
  transform: scale(1);
}

#demo { scroll-margin-top: 80px; }
.demo-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.demo-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--c-bg);
}
.demo-frame 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: radial-gradient(ellipse at center, #1a2040 0%, #0b0e1a 70%);
}
.demo-placeholder svg { width: 60px; height: 60px; color: var(--c-accent); opacity: .7; }
.demo-placeholder p { color: var(--c-text-muted); font-size: .9rem; }
.demo-footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  background: var(--c-card2);
}
.demo-info { display: flex; gap: 24px; flex-wrap: wrap; }
.demo-stat { display: flex; flex-direction: column; gap: 1px; }
.demo-stat label { font-size: .7rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.demo-stat span { font-size: .9rem; font-weight: 700; color: var(--c-text); }

.features-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.feature-card {
  flex: 1 1 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--trans), border-color var(--trans);
  text-align: center;
  align-items: center;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(232,160,32,.3); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232,160,32,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--c-accent); }
.feature-title { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: #fff; }
.feature-desc { font-size: .82rem; color: var(--c-text-muted); line-height: 1.55; }

#review { scroll-margin-top: 80px; }
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 3px; }
.author-name {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
}
.author-title { font-size: .78rem; color: var(--c-text-muted); line-height: 1.4; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  color: var(--c-accent);
  margin-top: 4px;
}
.author-link svg { width: 12px; height: 12px; }

.review-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  line-height: 1.75;
}
.review-body img {
  max-width: 450px;
  margin: 30px auto; 
}

.review-body h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-accent);
  margin: 28px 0 12px;
}
.review-body h2:first-child { margin-top: 0; }
.review-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
}
.review-body p { margin-bottom: 14px; font-size: .95rem; }
.review-body ul, .review-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-body ul { list-style: disc; }
.review-body ol { list-style: decimal; }
.review-body li { font-size: .92rem; line-height: 1.6; }
.review-body a { color: var(--c-accent); }
.review-body strong { color: #fff; font-weight: 700; }
.review-body em { color: var(--c-accent2); font-style: italic; }
.review-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .88rem;
  overflow-x: auto;
  display: block;
}
.review-body table th {
  background: var(--c-bg3);
  color: var(--c-accent);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  letter-spacing: .04em;
}
.review-body table td {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  background: var(--c-card2);
  text-align: left;
  vertical-align: top;
}
.review-body table tr:hover td { background: rgba(232,160,32,.04); }
.review-body blockquote {
  border-left: 3px solid var(--c-accent);
  margin: 18px 0;
  padding: 12px 20px;
  background: rgba(232,160,32,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-text-muted);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: rgba(232,160,32,.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.faq-question span {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232,160,32,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), transform var(--trans);
}
.faq-item.open .faq-icon { background: var(--c-accent); transform: rotate(180deg); }
.faq-icon svg { width: 12px; height: 12px; color: var(--c-accent); }
.faq-item.open .faq-icon svg { color: #0b0e1a; }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p { padding-bottom: 18px; font-size: .9rem; color: var(--c-text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 600px; padding-top: 0; }

#site-footer {
  background: var(--c-nav);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col { flex: 1 1 180px; }
.footer-col--wide { flex: 2 1 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 70px; width: auto; }
.footer-logo span { font-family: var(--font-head); font-size: .82rem; font-weight: 800; color: var(--c-accent); }
.footer-tagline { font-size: .82rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 18px; max-width: 260px; }
.footer-col-title { font-family: var(--font-head); font-size: .8rem; font-weight: 800; color: var(--c-accent); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--c-text-muted);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--c-accent); text-decoration: none; }
.footer-nav a svg { width: 13px; height: 13px; }

.footer-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-logos-row { margin-bottom: 14px; }
.footer-logos-title { font-size: .72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: .04em;
  min-width: 72px;
  text-align: center;
}
.footer-logo-badge:hover {background: var(--c-text); transition: 0.5s;}

.footer-payment-icons { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-icon {
  padding: 5px 12px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .75rem; color: var(--c-text-muted); line-height: 1.6; max-width: 700px; }
.footer-copy a { color: var(--c-text-muted); text-decoration: underline; font-size: .75rem; }
.footer-copy a:hover { color: var(--c-accent); }
.provider-badge { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.provider-badge span { font-size: .7rem; color: var(--c-text-muted); }
.provider-badge img { height: 22px; width: auto; opacity: .65; transition: opacity var(--trans); filter: brightness(10); }
.provider-badge img:hover { opacity: .9; }

.provider-content-logo {  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: .04em;
  min-width: 72px;
  text-align: center; }

#sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #0d1120 0%, #131828 100%);
  border-top: 2px solid var(--c-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#sticky-widget.visible { transform: translateY(0); }
.widget-text { display: flex; flex-direction: column; gap: 1px; }
.widget-text strong { font-family: var(--font-head); font-size: .88rem; color: var(--c-accent); font-weight: 800; }
.widget-text span { font-size: .75rem; color: var(--c-text-muted); }
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  line-height: 1;
  font-size: 1.1rem;
  transition: color var(--trans);
  flex-shrink: 0;
}
.widget-close:hover { color: var(--c-text); }

@media (max-width: 900px) {
  .hd-nav { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: 2rem; }
  .sec { padding: 44px 0; }
  .section-title { font-size: 1.3rem; }
  .bonuses-grid { flex-direction: column; }
  .features-grid { gap: 12px; }
  .footer-grid { gap: 24px; }
  .review-body { padding: 22px 20px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.65rem; }
  .hero-desc { font-size: .92rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 18px; }
  .hd-inner { height: 60px; }
  .hd-logo span { display: none; }
  .screenshots-grid { flex-direction: column; }
  .features-grid { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .demo-footer { flex-direction: column; }
  #sticky-widget { flex-wrap: wrap; }
  .slider-nav { display: flex; }
  .review-body img {max-width: 250px;}
  .demo-info {display: none;}
}
@media (max-width: 480px) {
  .bonus-card { flex: 1 1 100%; }
  .feature-card { flex: 1 1 100%; }
  .footer-col { flex: 1 1 100%; }
  .hd-right .hd-online { display: none; }
  .review-body img {max-width: 150px;}
  #sticky-widget {display: none;}
}

.wp-site-blocks { display: contents; }
.has-global-padding { display: contents; }
.elementor-widget-container { display: contents; }
.elementor-section { display: contents; }
.wpcf7 { display: contents; }
.menu-item { display: contents; }
#wpadminbar { display: none !important; }
.screen-reader-text { position:absolute;clip:rect(1px,1px,1px,1px);height:1px;width:1px;overflow:hidden; }
.wp-caption { display: contents; }
.aligncenter { display: block; margin: 0 auto; }
.wp-image-1241, .wp-image-1242 { display: none; }
.post-thumbnail { display: contents; }
.entry-header { display: contents; }
.logged-in.admin-bar { margin-top: 0 !important; }
