*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-bg: #1b1f30;
  --clr-hdr: #151928;
  --clr-btn-sec: #333951;
  --clr-btn-pri: #5236f0;
  --clr-btn-pri-hov: #6347ff;
  --clr-text: #e8eaf0;
  --clr-text-muted: #9aa0b8;
  --clr-border: #2a2f45;
  --clr-card: #1e2338;
  --clr-card2: #222840;
  --clr-accent: #5236f0;
  --clr-gold: #f0b429;
  --radius: 10px;
  --radius-lg: 16px;
  --fnt-sans: "Montserrat", Arial, Helvetica, sans-serif;
  --fnt-body: "Open Sans", Arial, Helvetica, sans-serif;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: var(--fnt-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clr-btn-pri-hov);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fnt-sans);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
p {
  margin-bottom: 1rem;
  line-height: 1.65;
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
th,
td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
}
th {
  background: var(--clr-card2);
  color: #fff;
  font-family: var(--fnt-sans);
  font-weight: 600;
}
td {
  color: var(--clr-text);
}
tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.x-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.x-flex {
  display: flex;
  align-items: center;
}
.x-gap-sm {
  gap: 10px;
}
.x-gap-md {
  gap: 16px;
}
.x-gap-lg {
  gap: 24px;
}
.x-col {
  flex-direction: column;
}
.x-sb {
  justify-content: space-between;
}
.x-center {
  justify-content: center;
}
.x-text-center {
  text-align: center;
}
.x-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.x-grid-3 > * {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 240px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--fnt-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn-sec {
  background: var(--clr-btn-sec);
  color: #fff;
}
.btn-sec:hover {
  background: #3e4563;
  color: #fff;
}
.btn-pri {
  background: var(--clr-btn-pri);
  color: #fff;
  box-shadow: 0 2px 12px rgba(82, 54, 240, 0.35);
}
.btn-pri:hover {
  background: var(--clr-btn-pri-hov);
  color: #fff;
  box-shadow: 0 6px 24px rgba(82, 54, 240, 0.5);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}
.btn-full {
  width: 100%;
}

.x-hdr {
  background: var(--clr-hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.x-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.x-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.x-logo {
  flex-shrink: 0;
}
.x-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.x-nav a {
  color: var(--clr-text-muted);
  font-size: 13px;
  font-family: var(--fnt-sans);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.x-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.x-hdr-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.x-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
  margin-left: 8px;
}
.x-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed573;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(46, 213, 115, 0);
  }
}
.x-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.x-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.x-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.x-burger.open span:nth-child(2) {
  opacity: 0;
}
.x-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.x-mob-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--clr-hdr);
  border-bottom: 1px solid var(--clr-border);
  z-index: 999;
  padding: 16px 20px;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.x-mob-nav.open {
  display: flex;
}
.x-mob-nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-family: var(--fnt-sans);
  padding: 10px 14px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.x-mob-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.x-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.x-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/Zban.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.x-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 25, 40, 0.85) 0%,
    rgba(82, 54, 240, 0.18) 100%
  );
}
.x-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 60px 20px;
}
.x-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.x-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.x-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #d0d5ed;
  margin-bottom: 28px;
  line-height: 1.6;
}
.x-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 54, 240, 0.2);
  border: 1px solid rgba(82, 54, 240, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #c4b8ff;
  margin-bottom: 16px;
  font-family: var(--fnt-sans);
}
.x-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.x-section {
  padding: 64px 0;
}
.x-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.x-section-sub {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.x-section-hdr {
  margin-bottom: 36px;
}

.x-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.x-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.x-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.x-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.x-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.55;
}

.x-advs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.x-adv {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  flex: 1 1 calc(25% - 15px);
  min-width: 200px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.x-adv:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(82, 54, 240, 0.18);
}
.x-adv-ico {
  width: 44px;
  height: 44px;
  background: rgba(82, 54, 240, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.x-adv h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.x-adv p {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.5;
}

.x-app-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.x-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.x-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 11px 20px;
  color: #fff;
  font-family: var(--fnt-sans);
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.x-dl-btn:hover {
  background: var(--clr-btn-sec);
  transform: translateY(-2px);
  color: #fff;
}
.x-dl-btn svg {
  flex-shrink: 0;
}

.x-mirror-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.x-mirror-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--clr-card2);
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
}
.x-mirror-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.x-mirror-meta-item strong {
  color: #fff;
}
.x-mirror-table-scroll {
  overflow-x: auto;
}
.x-mirror-table-scroll table th:last-child,
.x-mirror-table-scroll table td:last-child {
  text-align: center;
}
.x-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #2ed573;
  font-weight: 600;
}
.x-status-dot {
  width: 6px;
  height: 6px;
  background: #2ed573;
  border-radius: 50%;
}

.x-bonus-slider {
  position: relative;
  overflow: hidden;
}
.x-bonus-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.x-bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.x-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(82, 54, 240, 0.2);
}
.x-bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(82, 54, 240, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.x-bonus-tag {
  display: inline-block;
  background: var(--clr-btn-pri);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--fnt-sans);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.x-bonus-amount {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-family: var(--fnt-sans);
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}
.x-bonus-sub {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}
.x-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.x-bonus-list li {
  font-size: 13px;
  color: var(--clr-text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.x-bonus-list li::before {
  content: "✓";
  color: #2ed573;
  font-weight: 700;
  flex-shrink: 0;
}
.x-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.x-slider-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  background: var(--clr-card);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.x-slider-btn:hover {
  background: var(--clr-accent);
}
.x-slider-dots {
  display: flex;
  gap: 6px;
}
.x-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background 0.2s;
}
.x-slider-dot.active {
  background: var(--clr-accent);
}

.x-demo {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.x-demo-frame {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}
.x-demo-note {
  padding: 12px 16px;
  background: var(--clr-card2);
  font-size: 12px;
  color: var(--clr-text-muted);
  text-align: center;
}

.x-review {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.x-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.x-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-accent);
  flex-shrink: 0;
}
.x-author-name {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--fnt-sans);
  color: #fff;
  margin-bottom: 2px;
}
.x-author-bio {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.x-author-link {
  font-size: 12px;
  color: var(--clr-accent);
}
.x-content-body {
  line-height: 1.7;
}
.x-content-body h2 {
  font-size: 1.35rem;
  margin: 24px 0 12px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 8px;
}
.x-content-body h3 {
  font-size: 1.1rem;
  margin: 20px 0 8px;
  color: #d0d5ed;
}
.x-content-body h4 {
  font-size: 1rem;
  margin: 16px 0 6px;
}
.x-content-body p {
  margin-bottom: 14px;
  line-height: 1.7;
}
.x-content-body ul,
.x-content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 14px;
}
.x-content-body li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.x-content-body table {
  overflow-x: auto;
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.x-content-body a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.x-content-body strong {
  color: #fff;
}
.x-content-body blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 10px 16px;
  background: rgba(82, 54, 240, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.x-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x-faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}
.x-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.x-faq-q span {
  font-size: 15px;
  font-family: var(--fnt-sans);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.x-faq-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(82, 54, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s,
    background 0.2s;
}
.x-faq-item.open .x-faq-ico {
  transform: rotate(45deg);
  background: var(--clr-accent);
}
.x-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.x-faq-item.open .x-faq-a {
  max-height: 600px;
}
.x-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.x-ftr {
  background: var(--clr-hdr);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 28px;
}
.x-ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.x-ftr-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 36px;
  justify-content: space-between;
}
.x-ftr-brand {
}
.x-ftr-logo img {
  height: 34px;
  margin-bottom: 14px;
}
.x-ftr-tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  max-width: 240px;
  line-height: 1.6;
}
.x-ftr-col h4 {
  font-size: 13px;
  font-family: var(--fnt-sans);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.x-ftr-col a {
  display: block;
  font-size: 13px;
  color: var(--clr-text-muted);
  padding: 3px 0;
  transition: color 0.2s;
}
.x-ftr-col a:hover {
  color: #fff;
}
.x-ftr-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.x-prov-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--clr-text-muted);
  font-family: var(--fnt-sans);
  font-weight: 500;
}
.x-ftr-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.x-pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #c8cce0;
  font-family: var(--fnt-sans);
  font-weight: 600;
}
.x-ftr-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.x-ftr-bottom p {
  margin-bottom: 6px;
}

.x-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #131828 0%, #1a1e34 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(82, 54, 240, 0.25);
}
.x-widget-txt {
  font-size: 13px;
  font-family: var(--fnt-sans);
}
.x-widget-txt strong {
  color: #fff;
  font-size: 14px;
}
.x-widget-txt span {
  color: var(--clr-text-muted);
  font-size: 12px;
  display: block;
  margin-top: 1px;
}
.x-widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.x-widget-close:hover {
  color: #fff;
}
body.widget-closed .x-widget {
  display: none;
}

.x-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 0;
}

.x-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.x-fade-in.visible {
  opacity: 1;
  transform: none;
}

.x-tbl-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.x-mirror-url {
  color: var(--clr-accent);
  font-family: monospace;
  font-size: 13px;
}
.x-mirror-url:hover {
  color: var(--clr-btn-pri-hov);
}

.x-bg-alt {
  background: rgba(255, 255, 255, 0.018);
}

.x-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(82, 54, 240, 0.12);
  border: 1px solid rgba(82, 54, 240, 0.25);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #a89fff;
  font-family: var(--fnt-sans);
}

.x-hidden-wp {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 900px) {
  .x-adv {
    flex: 1 1 calc(50% - 10px);
  }
  .x-bonus-card {
    flex: 0 0 calc(50% - 10px);
  }
  .x-ftr-top {
    gap: 28px;
  }
}
@media (max-width: 700px) {
  .x-nav {
    display: none;
  }
  .x-burger {
    display: flex;
  }
  .x-online {
    display: none;
  }
  .x-hdr-btns .btn-sec {
    display: none;
  }
  .x-hero {
    min-height: 360px;
  }
  .x-section {
    padding: 44px 0;
  }
  .x-adv {
    flex: 1 1 100%;
  }
  .x-bonus-card {
    flex: 0 0 calc(100% - 0px);
  }
  .x-bonus-slider {
    margin: 0 -20px;
  }
  .x-demo-frame {
    height: 320px;
  }
  .x-ftr-top {
    flex-direction: column;
    gap: 24px;
  }
  .x-widget {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .x-widget-txt {
    flex: 1;
  }
}
@media (max-width: 400px) {
  .x-hdr-inner {
    padding: 0 12px;
  }
  .x-hero-content {
    padding: 40px 12px;
  }
}

.x-logo img,
.x-ftr-logo img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(3247%)
    hue-rotate(237deg) brightness(91%) contrast(98%);
}
