:root {
  --clr-header: #8d0d0f;
  --clr-header-dark: #6e0a0b;
  --clr-btn-dark: #363636;
  --clr-btn-green: #29b149;
  --clr-btn-green-hover: #22963d;
  --clr-bg: #1d1d1d;
  --clr-bg-card: #272727;
  --clr-bg-card2: #2e2e2e;
  --clr-text: #f0f0f0;
  --clr-text-muted: #b0b0b0;
  --clr-border: #3a3a3a;
  --clr-accent: #e8c84a;
  --clr-plus: #29b149;
  --clr-minus: #e04040;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.22s ease;
  --font-main: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.xb2k9r {
  display: none !important;
}
.wp-block-group__inner-container {
  max-width: 100%;
}
.entry-content-wp {
  display: none;
  visibility: hidden;
}
.wp-post-image-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

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

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

.x-site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.x-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 8px 16px;
}

.x-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.x-logo img {
  height: 44px;
  width: auto;
}

.x-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.x-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.x-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.x-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.x-online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-btn-green);
  border-radius: 50%;
  animation: xPulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes xPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(41, 177, 73, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(41, 177, 73, 0);
  }
}

.x-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.x-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.x-btn:active {
  transform: translateY(0);
}

.x-btn--login {
  background: var(--clr-btn-dark);
  color: #fff;
}
.x-btn--login:hover {
  background: #484848;
  color: #fff;
}

.x-btn--signup {
  background: var(--clr-btn-green);
  color: #fff;
}
.x-btn--signup:hover {
  background: var(--clr-btn-green-hover);
  color: #fff;
}

.x-btn--lg {
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--radius-md);
}
.x-btn--xl {
  font-size: 18px;
  padding: 16px 44px;
  border-radius: var(--radius-md);
}

.x-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.x-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.x-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.x-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.x-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.x-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-header);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.x-mobile-menu.is-open {
  display: flex;
}
.x-mobile-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
}
.x-mobile-menu .x-btn {
  width: 100%;
  max-width: 260px;
  font-size: 16px;
  padding: 12px;
}

.x-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0203 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.x-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banz.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.x-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.9) 0%,
    rgba(13, 13, 13, 0.5) 60%,
    rgba(13, 13, 13, 0.2) 100%
  );
}
.x-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.x-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-header);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.x-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-balance: balance;
}
.x-hero h1 span {
  color: var(--clr-accent);
}
.x-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}
.x-hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(41, 177, 73, 0.12);
  border: 1px solid rgba(41, 177, 73, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #fff;
}
.x-hero-bonus strong {
  color: var(--clr-btn-green);
  font-size: 18px;
}
.x-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.x-section {
  padding: 56px 0;
}
.x-section--sm {
  padding: 36px 0;
}

.x-section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-balance: balance;
}
.x-section-subtitle {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
}

.x-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.x-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.x-info-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--clr-bg-card);
  font-size: 14px;
}
.x-info-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.x-info-table tr:last-child {
  border-bottom: none;
}
.x-info-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.x-info-table td {
  padding: 12px 20px;
  vertical-align: top;
  text-align: left;
}
.x-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 42%;
  white-space: nowrap;
}
.x-info-table td:last-child {
  color: var(--clr-text);
  font-weight: 400;
}
.x-info-table .x-td-star {
  color: var(--clr-accent);
}
.x-rating-stars {
  color: var(--clr-accent);
  letter-spacing: 2px;
  font-size: 16px;
}

.x-advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.x-adv-item {
  flex: 1 1 220px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.x-adv-item:hover {
  border-color: var(--clr-header);
  transform: translateY(-2px);
}
.x-adv-icon {
  width: 44px;
  height: 44px;
  background: rgba(141, 13, 15, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}
.x-adv-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.x-adv-text {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.x-pros-cons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.x-pros-col,
.x-minus-col {
  flex: 1 1 280px;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 24px;
}
.x-pros-col {
  border-top: 3px solid var(--clr-plus);
}
.x-minus-col {
  border-top: 3px solid var(--clr-minus);
}
.x-col-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.x-col-title--plus {
  color: var(--clr-plus);
}
.x-col-title--minus {
  color: var(--clr-minus);
}
.x-pros-list li,
.x-minus-list li {
  font-size: 14px;
  color: var(--clr-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.x-pros-list li:last-child,
.x-minus-list li:last-child {
  border-bottom: none;
}
.x-pros-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2329B149'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: 2px;
}
.x-minus-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e04040'/%3E%3Cpath d='M5 8h6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  margin-top: 2px;
}

.x-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--clr-border);
}
.x-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.x-demo-box {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  box-shadow: var(--shadow);
  min-height: 480px;
}
.x-demo-box iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

.x-review-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.x-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
}
.x-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-header);
  flex-shrink: 0;
}
.x-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.x-author-bio {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.x-author-link {
  font-size: 12px;
  color: var(--clr-btn-green);
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
}

.x-content-body {
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.75;
}
.x-content-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.x-content-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 22px 0 10px;
}
.x-content-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-accent);
  margin: 16px 0 8px;
}
.x-content-body p {
  margin-bottom: 16px;
}
.x-content-body ul,
.x-content-body ol {
  margin: 12px 0 16px 22px;
}
.x-content-body ul {
  list-style: disc;
}
.x-content-body ol {
  list-style: decimal;
}
.x-content-body li {
  margin-bottom: 6px;
  color: var(--clr-text);
}
.x-content-body a {
  color: var(--clr-btn-green);
  text-decoration: underline;
}
.x-content-body a:hover {
  color: #fff;
}
.x-content-body strong,
.x-content-body b {
  color: #fff;
  font-weight: 700;
}
.x-content-body em,
.x-content-body i {
  color: var(--clr-text-muted);
  font-style: italic;
}
.x-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background: var(--clr-bg-card2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 14px;
}
.x-content-body table th {
  background: var(--clr-header);
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
}
.x-content-body table td {
  padding: 9px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}
.x-content-body table tr:last-child td {
  border-bottom: none;
}
.x-content-body blockquote {
  border-left: 4px solid var(--clr-header);
  padding: 12px 20px;
  background: rgba(141, 13, 15, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--clr-text-muted);
}
.x-content-body hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}
.x-content-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}
.x-content-body code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-family: monospace;
  color: var(--clr-accent);
}

.x-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x-faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.x-faq-item.is-open {
  border-color: var(--clr-header);
}
.x-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.x-faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.x-faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--clr-text-muted);
}
.x-faq-item.is-open .x-faq-arrow {
  transform: rotate(180deg);
  color: var(--clr-header);
}
.x-faq-a {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.x-faq-item.is-open .x-faq-a {
  max-height: 600px;
}
.x-faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  padding-top: 14px;
}

.x-footer {
  background: var(--clr-header);
  margin-top: auto;
  padding: 48px 0 24px;
}
.x-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 36px;
}
.x-footer-col {
  flex: 1 1 180px;
}
.x-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.x-footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.x-footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.x-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.x-footer-links a:hover {
  color: #fff;
}

.x-payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.x-pay-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.x-providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.x-prov-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.x-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 24px 0;
}

.x-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.x-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.x-footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 640px;
  line-height: 1.6;
}
.x-footer-nav-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.x-footer-nav-bottom a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.x-footer-nav-bottom a:hover {
  color: #fff;
}

.x-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #1a0c00 0%, #0d1f0d 100%);
  border-top: 2px solid var(--clr-btn-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.x-widget-text {
  flex: 1;
  min-width: 0;
}
.x-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.x-widget-subtitle {
  font-size: 12px;
  color: var(--clr-btn-green);
  font-weight: 600;
}
.x-widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.x-widget-close:hover {
  color: rgba(255, 255, 255, 0.8);
}
.x-widget.is-hidden {
  display: none;
}

.x-scroll-top {
  position: fixed;
  bottom: 72px;
  right: 20px;
  z-index: 990;
  width: 40px;
  height: 40px;
  background: var(--clr-header);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}
.x-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.x-scroll-top:hover {
  transform: translateY(-2px);
}

.x-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.x-breadcrumb a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.x-breadcrumb a:hover {
  color: #fff;
}
.x-breadcrumb span {
  color: #fff;
}

.x-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}
.x-separator-line {
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}
.x-separator-icon {
  color: var(--clr-header);
  font-size: 20px;
}

.x-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.4;
}
.x-badge--red {
  background: rgba(141, 13, 15, 0.25);
  color: #f87171;
  border: 1px solid rgba(141, 13, 15, 0.4);
}
.x-badge--green {
  background: rgba(41, 177, 73, 0.2);
  color: var(--clr-btn-green);
  border: 1px solid rgba(41, 177, 73, 0.35);
}
.x-badge--gold {
  background: rgba(232, 200, 74, 0.15);
  color: var(--clr-accent);
  border: 1px solid rgba(232, 200, 74, 0.3);
}

@keyframes xFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.x-animate-in {
  animation: xFadeUp 0.5s ease forwards;
}

.x-section-head {
  margin-bottom: 36px;
}

.x-wp-nonce-field {
  display: none;
}
.wp-die-message {
  display: none !important;
}
.wp-content-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .x-nav {
    display: none;
  }
  .x-burger {
    display: flex;
  }
  .x-header-inner {
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .x-hero {
    min-height: 400px;
  }
  .x-hero-content {
    padding: 40px 0;
  }
  .x-section {
    padding: 40px 0;
  }
  .x-review-block {
    padding: 24px 20px;
  }
  .x-pros-cons {
    flex-direction: column;
  }
  .x-widget {
    padding: 8px 14px;
  }
  .x-widget-text .x-widget-title {
    font-size: 12px;
  }
  .x-advantages-grid {
    gap: 12px;
  }
  .x-adv-item {
    flex: 1 1 100%;
  }
  .x-footer-top {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .x-hero h1 {
    font-size: 24px;
  }
  .x-btn--xl {
    font-size: 15px;
    padding: 13px 28px;
  }
  .x-card {
    padding: 18px;
  }
  .x-faq-q {
    font-size: 14px;
    padding: 15px 16px;
  }
  .x-faq-a-inner {
    padding: 12px 16px 16px;
  }
  .x-hero-bonus {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.q7r2x {
  color: transparent;
  font-size: 0;
}
.wp-includes-compat {
  display: none;
}
.e9k1m-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1024px) {
  .x-header-right .x-btn {
    display: none;
  }
}
