:root {
  --c-bg: #242527;
  --c-surface: #2c2f31;
  --c-surface-2: #333739;
  --c-header: #292d2e;
  --c-green: #3dea81;
  --c-green-dark: #2bc469;
  --c-green-hover: #4fffa0;
  --c-dark-btn: #292d2e;
  --c-text: #e8eaea;
  --c-text-muted: #9aa0a6;
  --c-text-dim: #6b7280;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-green: rgba(61, 234, 129, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-green: 0 0 24px rgba(61, 234, 129, 0.18);
  --transition: 0.22s ease;
  --font: "Inter", "Roboto", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--c-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-green-hover);
}

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

.xk4r9-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.j7f2m-section-sm {
  padding: 40px 0;
}

.b9q1x-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  line-height: 1.25;
}

.b9q1x-heading span {
  color: var(--c-green);
}

.n3p8k-subheading {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-green {
  background: var(--c-green);
  color: #111;
  box-shadow: 0 4px 16px rgba(61, 234, 129, 0.28);
}
.btn-green:hover {
  background: var(--c-green-hover);
  color: #111;
  box-shadow: 0 6px 24px rgba(61, 234, 129, 0.42);
}

.btn-dark {
  background: var(--c-dark-btn);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-dark:hover {
  background: #373c3e;
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline-green {
  background: transparent;
  color: var(--c-green);
  border: 1.5px solid var(--c-green);
}
.btn-outline-green:hover {
  background: var(--c-green);
  color: #111;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.m8z3v-card {
  background: var(--c-surface);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 28px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.m8z3v-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.m8z3v-card-green {
  border-color: var(--c-border-green);
  box-shadow: var(--shadow-green);
}

.p4t6n-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.p4t6n-badge-active {
  background: rgba(61, 234, 129, 0.15);
  color: var(--c-green);
  border: 1px solid var(--c-border-green);
}

.p4t6n-badge-warn {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.h1x9q-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(10px);
}

.h1x9q-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.h1x9q-logo img {
  height: 40px;
  width: auto;
}

.h1x9q-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.h1x9q-nav a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}

.h1x9q-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

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

.h1x9q-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding: 5px 11px;
  background: rgba(61, 234, 129, 0.07);
  border-radius: 100px;
  border: 1px solid var(--c-border-green);
  white-space: nowrap;
}

.h1x9q-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: q9z3x-pulse 2s infinite;
}

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

.h1x9q-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

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

.h1x9q-mobile-nav {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
}

.h1x9q-mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.h1x9q-mobile-nav a {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition:
    color var(--transition),
    background var(--transition);
}

.h1x9q-mobile-nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.v8c2w-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header);
}

.v8c2w-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/gameban.jpeg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.v8c2w-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(36, 37, 39, 0.95) 40%,
    rgba(36, 37, 39, 0.55) 80%,
    rgba(36, 37, 39, 0.2) 100%
  );
  z-index: 1;
}

.v8c2w-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.v8c2w-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 234, 129, 0.12);
  color: var(--c-green);
  border: 1px solid var(--c-border-green);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v8c2w-hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #fff;
}

.v8c2w-hero-title span {
  color: var(--c-green);
}

.v8c2w-hero-desc {
  font-size: 1.05rem;
  color: #c5cac8;
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 480px;
}

.v8c2w-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.v8c2w-hero-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* -------- TOC -------- */

.t5n1j-toc {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 8px;
}

.t5n1j-toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.t5n1j-toc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  counter-reset: toc-counter;
}

.t5n1j-toc-list li {
  counter-increment: toc-counter;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
}

.t5n1j-toc-list li::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.75rem;
  color: var(--c-green);
  font-weight: 700;
  min-width: 20px;
}

.t5n1j-toc-list a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.t5n1j-toc-list a:hover {
  color: var(--c-green);
}

/* -------- INFO TABLE -------- */

.r2g7y-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.r2g7y-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.r2g7y-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}

.r2g7y-table tr:last-child {
  border-bottom: none;
}
.r2g7y-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.r2g7y-table td {
  padding: 13px 20px;
  vertical-align: top;
  text-align: left;
  line-height: 1.5;
}

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

.r2g7y-table td:last-child {
  color: var(--c-text);
}

.r2g7y-table .r2g7y-val-green {
  color: var(--c-green);
  font-weight: 600;
}

/* -------- PROMO BLOCK -------- */

.q3m8p-promo-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.q3m8p-promo-card {
  flex: 1;
  min-width: 280px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-green);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}

.q3m8p-promo-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(61, 234, 129, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.q3m8p-promo-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.q3m8p-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(61, 234, 129, 0.07);
  border: 1.5px dashed var(--c-green);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background var(--transition);
}

.q3m8p-code-display:hover {
  background: rgba(61, 234, 129, 0.12);
}

.q3m8p-code-text {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-green);
  letter-spacing: 0.12em;
  font-family: "Roboto Mono", monospace;
}

.q3m8p-code-copy-icon {
  color: var(--c-text-muted);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.q3m8p-code-display:hover .q3m8p-code-copy-icon {
  color: var(--c-green);
}

.q3m8p-statuses {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.q3m8p-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.q3m8p-info-side {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.q3m8p-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.q3m8p-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61, 234, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q3m8p-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--c-green);
}

.q3m8p-info-title {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 3px;
}

.q3m8p-info-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
}

/* -------- APP BLOCK -------- */

.a4k7n-app-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.a4k7n-app-info {
  flex: 1;
  min-width: 260px;
}

.a4k7n-app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.a4k7n-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  text-decoration: none;
  color: var(--c-text);
  font-weight: 600;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
  min-width: 200px;
}

.a4k7n-dl-btn:hover {
  border-color: var(--c-green);
  background: rgba(61, 234, 129, 0.06);
  color: var(--c-text);
  transform: translateX(4px);
}

.a4k7n-dl-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--c-green);
  flex-shrink: 0;
}

.a4k7n-dl-small {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  font-weight: 400;
}
.a4k7n-dl-main {
  font-size: 0.95rem;
}

/* -------- VIDEO BLOCK -------- */

.e5j2r-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #000;
  aspect-ratio: 16 / 9;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

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

.g6x3z-demo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  background: #000;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

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

.g6x3z-demo-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* -------- REVIEW CONTENT -------- */

.c9w4h-review-content {
  line-height: 1.75;
  color: var(--c-text);
  font-size: 0.97rem;
}

.c9w4h-review-content h2,
.c9w4h-review-content h3,
.c9w4h-review-content h4 {
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.3;
  color: #fff;
}

.c9w4h-review-content h2 {
  font-size: 1.45rem;
}
.c9w4h-review-content h3 {
  font-size: 1.18rem;
}
.c9w4h-review-content h4 {
  font-size: 1rem;
  color: var(--c-text-muted);
}

.c9w4h-review-content p {
  margin-bottom: 16px;
}

.c9w4h-review-content ul,
.c9w4h-review-content ol {
  margin: 0 0 16px 0;
  padding-left: 22px;
}

.c9w4h-review-content ul li,
.c9w4h-review-content ol li {
  margin-bottom: 7px;
  line-height: 1.65;
}

.c9w4h-review-content ul li::marker {
  color: var(--c-green);
}
.c9w4h-review-content ol li::marker {
  color: var(--c-green);
  font-weight: 700;
}

.c9w4h-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 0.9rem;
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.c9w4h-review-content table th {
  background: rgba(61, 234, 129, 0.1);
  color: var(--c-green);
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border-green);
}

.c9w4h-review-content table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}

.c9w4h-review-content table tr:last-child td {
  border-bottom: none;
}

.c9w4h-review-content strong {
  color: #fff;
  font-weight: 700;
}

.c9w4h-review-content a {
  color: var(--c-green);
}

.c9w4h-review-content blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 20px;
  background: rgba(61, 234, 129, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.c9w4h-review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 32px 0;
}

/* -------- AUTHOR -------- */

.d1m6q-author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}

.d1m6q-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-surface-2);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--c-border-green);
}

.d1m6q-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d1m6q-author-name {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.d1m6q-author-role {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.d1m6q-author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-green);
  margin-top: 6px;
}

/* -------- FAQ -------- */

.f7r2s-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}

.f7r2s-faq-item.is-open {
  border-color: var(--c-border-green);
}

.f7r2s-faq-question {
  width: 100%;
  background: var(--c-surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--transition);
}

.f7r2s-faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.f7r2s-faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(61, 234, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}

.f7r2s-faq-item.is-open .f7r2s-faq-icon {
  transform: rotate(45deg);
  background: rgba(61, 234, 129, 0.2);
}

.f7r2s-faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--c-green);
}

.f7r2s-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.25s ease;
  background: var(--c-surface);
}

.f7r2s-faq-item.is-open .f7r2s-faq-answer {
  max-height: 400px;
}

.f7r2s-faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

/* -------- FOOTER -------- */

.u3p5k-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
  padding: 48px 0 24px;
}

.u3p5k-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}

.u3p5k-footer-brand {
  flex: 0 0 220px;
}

.u3p5k-footer-logo img {
  height: 38px;
  margin-bottom: 14px;
}

.u3p5k-footer-desc {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.u3p5k-footer-col {
  flex: 1;
  min-width: 140px;
}

.u3p5k-footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.u3p5k-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 9px;
  transition: color var(--transition);
}

.u3p5k-footer-col a:hover {
  color: var(--c-green);
}

.u3p5k-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.u3p5k-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.u3p5k-footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}

.u3p5k-footer-bottom a {
  color: var(--c-text-dim);
}
.u3p5k-footer-bottom a:hover {
  color: var(--c-green);
}

.u3p5k-legal {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 0.75rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

/* -------- WIDGET -------- */

.w5n8x-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #1d2520 0%, #242527 50%, #1d2520 100%);
  border-top: 1px solid var(--c-border-green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  animation: l4p2w-slideUp 0.5s ease 1.2s both;
}

@keyframes l4p2w-slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.w5n8x-widget-text {
  font-size: 0.88rem;
  color: var(--c-text-muted);
}

.w5n8x-widget-text strong {
  color: var(--c-green);
  font-weight: 700;
}

.w5n8x-widget-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-dim);
  cursor: pointer;
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background var(--transition),
    color var(--transition);
}

.w5n8x-widget-close:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--c-text);
}

body.widget-active {
  padding-bottom: 60px;
}

/* -------- DIVIDER -------- */

.y6k3b-divider {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}

/* -------- SECTION LABEL -------- */

.z1q4t-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.z1q4t-section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-green);
  border-radius: 1px;
}

/* -------- PROVIDER PILLS -------- */

.k8v5m-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.k8v5m-pill {
  display: inline-flex;
  align-items: center;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* -------- TOAST -------- */

.x2n7p-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-green);
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(61, 234, 129, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 1100;
  white-space: nowrap;
}

.x2n7p-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* -------- FADE IN ANIMATIONS -------- */

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

.o5j9r-fade.visible {
  opacity: 1;
  transform: none;
}

/* -------- WP COMPAT STUBS (не влияют на рендер) -------- */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}
.wpcf7 {
  display: block;
}
.yoast-seo-hidden {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* -------- RESPONSIVE -------- */

@media (max-width: 900px) {
  .h1x9q-nav {
    display: none;
  }
  .h1x9q-burger {
    display: flex;
  }
  .h1x9q-actions .btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .h1x9q-online {
    display: none;
  }
}

@media (max-width: 640px) {
  .j7f2m-section {
    padding: 44px 0;
  }
  .v8c2w-hero {
    min-height: 380px;
  }
  .v8c2w-hero-content {
    padding: 44px 0;
  }
  .v8c2w-hero-btns {
    gap: 10px;
  }
  .q3m8p-promo-card {
    padding: 24px 18px;
  }
  .q3m8p-code-text {
    font-size: 1.35rem;
    letter-spacing: 0.07em;
  }
  .a4k7n-app-wrap {
    gap: 24px;
  }
  .u3p5k-footer-top {
    gap: 28px;
  }
  .d1m6q-author-card {
    flex-direction: column;
  }
  .w5n8x-widget {
    padding: 10px 48px 10px 14px;
  }
  .w5n8x-widget-text {
    font-size: 0.8rem;
  }
  .t5n1j-toc-list {
    gap: 8px 16px;
  }
}

@media (max-width: 420px) {
  .h1x9q-actions .btn-dark {
    display: none;
  }
}
