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

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

:root {
  --c-black: #000000;
  --c-header: #0E0E0E;
  --c-green: #00C070;
  --c-green-h: #00a85f;
  --c-yellow: #FFD342;
  --c-yellow-h: #e6bc28;
  --c-text: #e8e8e8;
  --c-text-muted: #a0a0a0;
  --c-border: rgba(255,255,255,0.09);
  --c-card: #111111;
  --c-card2: #161616;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.22s ease;
}

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

body {
  font-family: 'Rubik', sans-serif;
  background: var(--c-black);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--c-yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-yellow-h); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn--green {
  background: var(--c-green);
  color: #000;
}
.btn--green:hover { background: var(--c-green-h); color: #000; box-shadow: 0 0 18px rgba(0,192,112,0.4); }
.btn--yellow {
  background: var(--c-yellow);
  color: #000;
}
.btn--yellow:hover { background: var(--c-yellow-h); color: #000; box-shadow: 0 0 18px rgba(255,211,66,0.4); }
.btn--lg { padding: 14px 36px; font-size: 16px; border-radius: var(--radius); }

.xk9f2 { display: none; }
.p3m7z { visibility: hidden; position: absolute; }

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

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

.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.07); color: var(--c-yellow); }

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: rgba(0,192,112,0.1);
  border: 1px solid rgba(0,192,112,0.2);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.07); }
.burger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 0 16px;
  gap: 4px;
}
.mobile-menu a {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  display: block;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--c-yellow); }
.mobile-menu.is-open { display: flex; }

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/ozwin-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 100%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
  animation: fadeInUp 0.7s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,192,112,0.15);
  border: 1px solid rgba(0,192,112,0.35);
  color: var(--c-green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-title span { color: var(--c-green); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 500px;
}
.hero-bonus-tag {
  display: inline-block;
  background: var(--c-yellow);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 8px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.breadcrumbs-wrap {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-yellow); }
.breadcrumbs .sep { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: var(--c-yellow); font-weight: 500; }

.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.section-head { margin-bottom: 36px; }
.section-head .section-title::after {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: var(--c-green);
  border-radius: 2px;
  margin-top: 10px;
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.info-table th, .info-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.info-table th {
  width: 200px;
  color: var(--c-text-muted);
  font-weight: 500;
  background: var(--c-card2);
  white-space: nowrap;
}
.info-table td { color: var(--c-text); font-weight: 400; }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }
.info-table .tag {
  display: inline-block;
  background: rgba(0,192,112,0.12);
  color: var(--c-green);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  margin: 1px 2px;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.adv-card {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover {
  border-color: rgba(0,192,112,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.adv-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,192,112,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.adv-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.adv-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }

.bonuses-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.bonus-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-yellow));
}
.bonus-card:hover { border-color: rgba(255,211,66,0.3); box-shadow: var(--shadow); }
.bonus-card--featured::before { background: linear-gradient(90deg, var(--c-yellow), var(--c-green)); }
.bonus-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(255,211,66,0.15);
  color: var(--c-yellow);
  border: 1px solid rgba(255,211,66,0.25);
}
.bonus-card--featured .bonus-label {
  background: rgba(0,192,112,0.15);
  color: var(--c-green);
  border-color: rgba(0,192,112,0.25);
}
.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bonus-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-yellow);
  margin-bottom: 10px;
}
.bonus-desc { font-size: 13px; color: var(--c-text-muted); margin-bottom: 20px; line-height: 1.55; }
.bonus-code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,211,66,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 18px;
}
.bonus-code-label { font-size: 11px; color: var(--c-text-muted); }
.bonus-code {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-yellow);
  letter-spacing: 1px;
  flex: 1;
}
.copy-btn {
  background: none;
  border: 1px solid rgba(255,211,66,0.3);
  color: var(--c-yellow);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Rubik', sans-serif;
}
.copy-btn:hover { background: rgba(255,211,66,0.1); }
.bonus-tnc { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 8px; }

.demo-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-card2);
  flex-wrap: wrap;
  gap: 10px;
}
.demo-title { font-size: 15px; font-weight: 600; color: #fff; }
.demo-subtitle { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #050505;
}
.demo-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.review-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.review-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.review-content h2:first-child { margin-top: 0; }
.review-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-yellow);
  margin: 22px 0 10px;
}
.review-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 8px;
}
.review-content p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.review-content ul, .review-content ol {
  margin: 12px 0 16px 22px;
}
.review-content li {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.65;
  margin-bottom: 6px;
}
.review-content ul li::marker { color: var(--c-green); }
.review-content ol li::marker { color: var(--c-yellow); font-weight: 700; }
.review-content a { color: var(--c-yellow); text-decoration: underline; }
.review-content a:hover { color: var(--c-yellow-h); }
.review-content strong { color: #fff; font-weight: 600; }
.review-content em { color: var(--c-text-muted); }
.review-content blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 20px;
  margin: 18px 0;
  background: rgba(0,192,112,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-content blockquote p { margin: 0; color: rgba(255,255,255,0.75); font-style: italic; }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-content th {
  background: var(--c-card2);
  color: var(--c-text-muted);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.review-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.review-content tr:last-child td { border-bottom: none; }
.review-content img { border-radius: var(--radius-sm); margin: 16px 0; }
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

.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);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: rgba(0,192,112,0.3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  user-select: none;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--c-text-muted);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-icon {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #000;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.faq-a p { margin-bottom: 8px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-a { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,192,112,0.3);
}
.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--c-green);
  font-weight: 500;
  margin-bottom: 12px;
}
.author-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 16px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-yellow);
  border: 1px solid rgba(255,211,66,0.25);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  transition: background var(--transition), border-color var(--transition);
}
.author-link:hover { background: rgba(255,211,66,0.08); border-color: rgba(255,211,66,0.5); color: var(--c-yellow); }

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.footer-logo a { display: block;width: fit-content; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: var(--c-text-muted); max-width: 300px; line-height: 1.6; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--c-yellow); }
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  max-width: 760px;
}
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.footer-legal a:hover { color: var(--c-yellow); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0a1f15 0%, #0E0E0E 100%);
  border-top: 1px solid rgba(0,192,112,0.25);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.sticky-widget.is-visible { transform: translateY(0); }
.sticky-widget-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.sticky-widget-bonus {
  display: inline-block;
  background: rgba(0,192,112,0.15);
  border: 1px solid rgba(0,192,112,0.3);
  color: var(--c-green);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 13px;
}
.sticky-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.sticky-close:hover { color: rgba(255,255,255,0.7); }

.info-page-content {
  padding: 48px 0 64px;
}
.info-page-content h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.info-page-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.info-page-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-yellow);
  margin: 20px 0 8px;
}
.info-page-content p {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.info-page-content ul, .info-page-content ol {
  margin: 10px 0 16px 22px;
}
.info-page-content li {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.info-page-content a { color: var(--c-yellow); text-decoration: underline; }
.info-page-content strong { color: #fff; }

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

.wp-block-group { display: contents; }
.wp-caption { display: none; }
.screen-reader-text { position: absolute; left: -9999px; }
#wpadminbar { display: none !important; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-card); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .adv-card { flex: 1 1 calc(50% - 8px); }
  .bonus-card { flex: 0 0 80vw; }
  .review-content { padding: 24px 20px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
}

@media (max-width: 600px) {
  .hero { min-height: 380px; }
  .hero-content { padding: 48px 0; }
  .section { padding: 44px 0; }
  .adv-card { flex: 1 1 100%; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { max-width: 100%; }
  .info-table th { width: 130px; }
  .sticky-widget { padding: 10px 40px 10px 14px; }
  .sticky-widget-text { font-size: 12px; }
}
@media (max-width: 420px) {
.header-actions .btn--yellow {display: none;}
}
.q7r2p { width:1px; height:1px; overflow:hidden; position:absolute; left:-9999px; }
.a1x8m { color: transparent; pointer-events:none; }
