:root {
  --clr-bg: #20103c;
  --clr-header: #2a1e49;
  --clr-card: #2b1f4a;
  --clr-btn-login: #3d2c6b;
  --clr-btn-reg: #c9a227;
  --clr-btn-reg-hover: #e0b82e;
  --clr-accent: #c9a227;
  --clr-accent2: #f0c940;
  --clr-text: #e8dff5;
  --clr-text-muted: #a89bc2;
  --clr-border: #3e2d6e;
  --clr-border-light: #4a3880;
  --clr-table-head: #1a0d30;
  --clr-link: #c9a227;
  --clr-link-hover: #f0c940;
  --clr-success: #28a745;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --transition: 0.25s ease;
  --font-main: "Open Sans", Arial, sans-serif;
  --font-head: "Roboto", Arial, 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);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--clr-link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-link-hover);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--clr-text);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  margin-bottom: 0.9rem;
}

.x9f2k {
  display: none;
}
.wp-content-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.elementor-hidden {
  display: none !important;
}

.b7q3n-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.c4p1z-section {
  padding: 64px 0;
}

.m8w5r-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}

.v6n2x-title {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}

.v6n2x-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.k3d8m-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.k3d8m-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.k3d8m-btn--login {
  background: var(--clr-btn-login);
  color: #fff;
  border: 1px solid var(--clr-border-light);
}

.k3d8m-btn--login:hover {
  background: #4e3a8a;
  color: #fff;
}

.k3d8m-btn--reg {
  background: var(--clr-btn-reg);
  color: #1a0d30;
}

.k3d8m-btn--reg:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a0d30;
}

.k3d8m-btn--hero {
  background: var(--clr-btn-reg);
  color: #1a0d30;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
  letter-spacing: 0.5px;
}

.k3d8m-btn--hero:hover {
  background: var(--clr-btn-reg-hover);
  color: #1a0d30;
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

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

.q5r7p-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.q5r7p-logo img {
  height: 74px;
  width: auto;
}

.q5r7p-nav {
  display: flex;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.q5r7p-nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  font-weight: 500;
  text-decoration: none;
}

.q5r7p-nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.07);
}

.q5r7p-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.q5r7p-online-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.q5r7p-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.q5r7p-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.q5r7p-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.q5r7p-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.q5r7p-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.q5r7p-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.q5r7p-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  padding: 16px 20px 20px;
  border-top: 1px solid var(--clr-border);
  gap: 6px;
}

.q5r7p-mobile-nav.is-open {
  display: flex;
}

.q5r7p-mobile-nav a {
  color: var(--clr-text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
}

.q5r7p-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text);
}

.h4e9x-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.h4e9x-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/bossban.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;
  transform: scale(1.04);
  animation: hero-zoom 12s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.09);
  }
}

.h4e9x-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(32, 16, 60, 0.85) 0%,
    rgba(42, 30, 73, 0.6) 100%
  );
  z-index: 1;
}

.h4e9x-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 760px;
}

.h4e9x-hero__badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.h4e9x-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.h4e9x-hero__title span {
  color: var(--clr-accent);
}

.h4e9x-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(232, 223, 245, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.h4e9x-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.h4e9x-hero__bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px dashed var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
  justify-content: center;
}

.t2k6v-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.t2k6v-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}

.t2k6v-table th,
.t2k6v-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
  line-height: 1.5;
}

.t2k6v-table thead th {
  background: var(--clr-table-head);
  color: var(--clr-accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t2k6v-table tbody tr {
  transition: background var(--transition);
}

.t2k6v-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.t2k6v-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.t2k6v-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 40%;
  white-space: nowrap;
}

.t2k6v-table td:last-child {
  color: var(--clr-text);
  font-weight: 400;
}

.t2k6v-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--clr-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}

.z1n4r-mirrors {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0 12px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}

.z1n4r-mirrors__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.z1n4r-mirrors__time {
  font-size: 13px;
  color: var(--clr-text-muted);
  background: var(--clr-table-head);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
}

.z1n4r-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-success);
  background: rgba(40, 167, 69, 0.12);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 30px;
  padding: 3px 10px;
}

.z1n4r-status-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.z1n4r-mirrors-table {
  width: 100%;
  border-collapse: collapse;
}

.z1n4r-mirrors-table th,
.z1n4r-mirrors-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
  font-size: 14px;
}

.z1n4r-mirrors-table thead th {
  color: var(--clr-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  background: var(--clr-table-head);
}

.z1n4r-mirrors-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.z1n4r-mirror-link {
  color: var(--clr-link);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.z1n4r-mirror-link:hover {
  color: var(--clr-link-hover);
}

.f8s2w-screenshots {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0 12px;
  border: 1px solid var(--clr-border);
}

.f8s2w-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.f8s2w-slide img {
  border-radius: var(--radius-sm);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  border: 1px solid var(--clr-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

.f8s2w-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.f8s2w-mobile-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.f8s2w-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.f8s2w-dot.is-active {
  background: var(--clr-accent);
}

.d9c4r-demo {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0 12px;
  border: 1px solid var(--clr-border);
  text-align: center;
}

.d9c4r-demo__iframe-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-border);
  background: #0d0820;
}

.d9c4r-demo__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.d9c4r-demo__note {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 10px;
}

.r5p8k-review {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 0 12px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}

.r5p8k-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.r5p8k-review__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-btn-login), var(--clr-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
  flex-shrink: 0;
}

.r5p8k-review__author-info {
  flex: 1;
}

.r5p8k-review__author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-text);
}

.r5p8k-review__author-role {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.r5p8k-review__author-link {
  font-size: 12px;
  color: var(--clr-accent);
}

.r5p8k-review__content {
  font-size: 15px;
  line-height: 1.7;
}

.r5p8k-review__content h2,
.r5p8k-review__content h3,
.r5p8k-review__content h4 {
  color: var(--clr-text);
  margin: 24px 0 12px;
  font-family: var(--font-head);
}

.r5p8k-review__content h2 {
  font-size: 1.4rem;
}
.r5p8k-review__content h3 {
  font-size: 1.2rem;
}

.r5p8k-review__content p {
  margin-bottom: 14px;
  color: var(--clr-text);
}

.r5p8k-review__content a {
  color: var(--clr-link);
  text-decoration: underline;
}

.r5p8k-review__content ul,
.r5p8k-review__content ol {
  margin: 12px 0 16px 24px;
}

.r5p8k-review__content li {
  margin-bottom: 6px;
  color: var(--clr-text);
}

.r5p8k-review__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.r5p8k-review__content table th,
.r5p8k-review__content table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
}

.r5p8k-review__content table th {
  background: var(--clr-table-head);
  color: var(--clr-accent);
  font-weight: 700;
}

.r5p8k-review__content blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(201, 162, 39, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text);
  font-style: italic;
}

.r5p8k-review__content strong {
  color: #fff;
}

.r5p8k-review__content em {
  color: var(--clr-text-muted);
}

.e7t3n-faq {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0 12px;
  border: 1px solid var(--clr-border);
}

.e7t3n-item {
  border-bottom: 1px solid var(--clr-border);
}

.e7t3n-item:last-child {
  border-bottom: none;
}

.e7t3n-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 48px 18px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  line-height: 1.5;
}

.e7t3n-question:hover {
  color: var(--clr-accent);
}

.e7t3n-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--clr-accent);
  transition: transform var(--transition);
  line-height: 1;
}

.e7t3n-item.is-open .e7t3n-question {
  color: var(--clr-accent);
}

.e7t3n-item.is-open .e7t3n-question::after {
  content: "−";
}

.e7t3n-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
}

.e7t3n-item.is-open .e7t3n-answer {
  max-height: 600px;
}

.e7t3n-answer__inner {
  padding: 0 0 20px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: 14px;
}

.e7t3n-answer__inner a {
  color: var(--clr-link);
}

.s3b9q-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 0;
}

.s3b9q-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.s3b9q-footer__logo img {
  height: 60px;
  margin-bottom: 14px;
}

.s3b9q-footer__desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.s3b9q-footer__heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.s3b9q-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s3b9q-footer__links a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.s3b9q-footer__links a:hover {
  color: var(--clr-text);
}

.s3b9q-footer__logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.s3b9q-logo-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
  transition:
    background var(--transition),
    color var(--transition);
}

.s3b9q-logo-badge:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--clr-accent);
}

.s3b9q-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.s3b9q-footer__copy {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.s3b9q-footer__legal {
  font-size: 11px;
  color: var(--clr-text-muted);
  max-width: 680px;
  line-height: 1.5;
  text-align: right;
}

.n6j1w-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a0d30 0%, var(--clr-card) 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.n6j1w-widget__text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.n6j1w-widget__text strong {
  color: var(--clr-accent);
}

.n6j1w-widget__btn {
  background: var(--clr-btn-reg);
  color: #1a0d30;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
  animation: widget-pulse 3s ease-in-out infinite;
}

.n6j1w-widget__btn:hover {
  background: var(--clr-btn-reg-hover);
  transform: scale(1.04);
  color: #1a0d30;
  text-decoration: none;
}

@keyframes widget-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 162, 39, 0);
  }
}

.n6j1w-widget__close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}

.n6j1w-widget__close:hover {
  color: var(--clr-text);
}

body.widget-closed .n6j1w-widget {
  display: none;
}

body {
  padding-bottom: 72px;
}

body.widget-closed {
  padding-bottom: 0;
}

.u2m5p-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.u2m5p-star {
  color: var(--clr-accent);
  font-size: 16px;
}

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

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-caption {
  display: none;
}
.wp-post-image {
  max-width: 100%;
}
.entry-content {
  display: none;
  visibility: hidden;
}
.wp-block-image {
  display: none;
}
.wpcf7 {
  display: none;
  height: 0;
  overflow: hidden;
}
.elementor-widget-container {
  display: none;
  height: 0;
}

.g4h7b-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 0;
}

.a8p3c-breadcrumb {
  padding: 10px 20px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.a8p3c-breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
}

.a8p3c-breadcrumb a:hover {
  color: var(--clr-accent);
}

.a8p3c-breadcrumb span {
  color: var(--clr-text-muted);
  margin: 0 6px;
}

@media (max-width: 1024px) {
  .q5r7p-header__inner {
    grid-template-columns: auto auto 1fr auto;
  }
  .q5r7p-nav {
    display: none;
  }
  .q5r7p-burger {
    display: flex;
  }
  .s3b9q-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .s3b9q-footer__logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .c4p1z-section {
    padding: 48px 0;
  }
  .m8w5r-block {
    padding: 20px 16px;
    margin: 0 8px;
  }
  .z1n4r-mirrors {
    padding: 20px 16px;
    margin: 0 8px;
  }
  .f8s2w-screenshots {
    padding: 20px 16px;
    margin: 0 8px;
  }
  .d9c4r-demo {
    padding: 20px 16px;
    margin: 0 8px;
  }
  .r5p8k-review {
    padding: 24px 16px;
    margin: 0 8px;
  }
  .e7t3n-faq {
    padding: 20px 16px;
    margin: 0 8px;
  }
  .q5r7p-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 10px 14px;
  }
  .q5r7p-online {
    display: none;
  }
  .f8s2w-slider {
    grid-template-columns: 1fr;
    position: relative;
  }
  .f8s2w-slide {
    display: none;
  }
  .f8s2w-slide.is-active {
    display: block;
  }
  .f8s2w-mobile-nav {
    display: flex;
  }
  .s3b9q-footer__top {
    grid-template-columns: 1fr;
  }
  .s3b9q-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .s3b9q-footer__legal {
    text-align: center;
    max-width: 100%;
  }
  .h4e9x-hero {
    min-height: 420px;
  }
  .h4e9x-hero__title {
    font-size: 1.8rem;
  }
  .n6j1w-widget {
    gap: 10px;
    padding: 10px 14px;
  }
  .r5p8k-review__author {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .q5r7p-buttons .k3d8m-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .h4e9x-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .t2k6v-table td:first-child {
    white-space: normal;
  }
}

.q5r7p-logo img,
.s3b9q-footer__logo img {
  filter: brightness(0) invert(1);
}
