*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  background-color: var(--bz-bg);
  color: var(--bz-text);
  font-family: "Inter", "Roboto", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--bz-btn-red);
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}
a:hover {
  opacity: 0.85;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
:focus-visible {
  outline: 2px solid var(--bz-btn-red);
  outline-offset: 2px;
}
.bz-menu-open {
  overflow: hidden;
}

.k5r2x-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn-red,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    opacity 0.18s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-red {
  background: var(--bz-btn-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 57, 57, 0.35);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 57, 57, 0.5);
  color: #fff;
  opacity: 1;
}
.btn-red:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 57, 57, 0.3);
}
.btn-dark {
  background: var(--bz-btn-dark);
  color: var(--bz-text);
  border: 1px solid var(--bz-border);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: var(--bz-text);
  opacity: 1;
}

.section-block {
  background: var(--bz-card);
  border-radius: 16px;
  padding: 48px 40px;
  margin: 16px 0 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.section-block.bz-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px;
  color: var(--bz-muted);
  text-align: center;
  margin-bottom: 36px;
}
.req {
  color: var(--bz-btn-red);
}

.xm7k9-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bz-header);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.xm7k9-header.scrolled {
  border-color: var(--bz-border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.xm7k9-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.xm7k9-logo-link {
  display: flex;
  align-items: center;
}
.xm7k9-logo-link img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.xm7k9-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bz-muted);
  white-space: nowrap;
}
.xm7k9-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bz-green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--bz-green);
  animation: bzPulse 2s infinite;
}
@keyframes bzPulse {
  0%,
  100% {
    box-shadow: 0 0 8px var(--bz-green);
  }
  50% {
    box-shadow:
      0 0 16px var(--bz-green),
      0 0 24px rgba(34, 197, 94, 0.3);
  }
}
.xm7k9-online-num {
  color: #fff;
  font-weight: 600;
}
.xm7k9-nav-wrap {
  display: flex;
}
.xm7k9-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.xm7k9-nav-link {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bz-muted);
  transition:
    color 0.2s,
    background 0.2s;
}
.xm7k9-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.xm7k9-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.xm7k9-btn {
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    opacity 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.xm7k9-btn--login {
  background: var(--bz-btn-dark);
  color: var(--bz-text);
  border: 1px solid var(--bz-border);
}
.xm7k9-btn--login:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: #1e2d3d;
  opacity: 1;
}
.xm7k9-btn--signup {
  background: var(--bz-btn-red);
  color: #fff;
  box-shadow: 0 3px 14px rgba(255, 57, 57, 0.35);
}
.xm7k9-btn--signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 57, 57, 0.5);
  color: #fff;
  opacity: 1;
}
.xm7k9-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: 1px solid var(--bz-border);
  background: var(--bz-btn-dark);
}
.xm7k9-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.xm7k9-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.xm7k9-burger.active span:nth-child(2) {
  opacity: 0;
}
.xm7k9-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.xm7k9-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}
.xm7k9-overlay.active {
  display: block;
}
.xm7k9-noscript-msg {
  padding: 12px;
  background: var(--bz-btn-dark);
  color: var(--bz-text);
  text-align: center;
  font-size: 14px;
}

.xm7k9-header-outer {
  height: 68px;
}

.m3b8q-hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.m3b8q-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.m3b8q-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 19, 28, 0.97) 40%,
    rgba(13, 19, 28, 0.65) 100%
  );
  z-index: 1;
}
.m3b8q-hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.m3b8q-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 57, 57, 0.15);
  border: 1px solid rgba(255, 57, 57, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bz-btn-red);
  margin-bottom: 16px;
}
.m3b8q-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bz-btn-red);
  animation: bzPulse 2s infinite;
}
.m3b8q-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.m3b8q-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(232, 237, 244, 0.85);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.m3b8q-hero-sub strong {
  color: #fff;
}
.m3b8q-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-hero {
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 9px;
}
.m3b8q-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.m3b8q-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(232, 237, 244, 0.75);
}

.rq5j4-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--bz-muted);
}
.rq5j4-link {
  color: var(--bz-muted);
  transition: color 0.2s;
}
.rq5j4-link:hover {
  color: #fff;
}
.rq5j4-sep {
  color: var(--bz-border);
}
.rq5j4-item--current {
  color: rgba(255, 255, 255, 0.7);
}

.w4j9n-adv {
  margin-top: 16px;
}
.w4j9n-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.w4j9n-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  padding: 24px 20px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
}
.w4j9n-card.bz-visible {
  opacity: 1;
  transform: translateY(0);
}
.w4j9n-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 57, 57, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.w4j9n-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.w4j9n-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.w4j9n-card-text {
  font-size: 13px;
  color: var(--bz-muted);
  line-height: 1.6;
}

.v2t7m-pc {
}
.v2t7m-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.v2t7m-col {
  border-radius: 12px;
  padding: 28px 28px;
  border: 1px solid var(--bz-border);
}
.v2t7m-pros {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}
.v2t7m-cons {
  background: rgba(255, 57, 57, 0.06);
  border-color: rgba(255, 57, 57, 0.2);
}
.v2t7m-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.v2t7m-col-icon {
  font-size: 22px;
}
.v2t7m-col-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.v2t7m-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2t7m-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--bz-text);
  line-height: 1.5;
}
.v2t7m-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--bz-green);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2t7m-cross {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 57, 57, 0.15);
  color: var(--bz-btn-red);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b6q3k-ss {
}
.b6q3k-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.b6q3k-track {
  position: relative;
}
.b6q3k-slide {
  display: none;
  border-radius: 10px;
  overflow: hidden;
}
.b6q3k-slide.active {
  display: block;
  animation: bzFadeIn 0.4s ease;
}
@keyframes bzFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.b6q3k-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.b6q3k-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(13, 19, 28, 0.9));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 10px 10px;
}
.b6q3k-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 19, 28, 0.8);
  border: 1px solid var(--bz-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.b6q3k-nav:hover {
  background: var(--bz-btn-red);
  transform: translateY(-50%) scale(1.08);
}
.b6q3k-prev {
  left: 12px;
}
.b6q3k-next {
  right: 12px;
}
.b6q3k-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.b6q3k-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.b6q3k-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.h8p1y-slot {
}
.h8p1y-machine {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.h8p1y-display {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid var(--bz-border);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.h8p1y-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 57, 57, 0.05), transparent 60%);
  pointer-events: none;
}
.h8p1y-reels {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
}
.h8p1y-reel {
  background: var(--bz-card);
  border: 2px solid var(--bz-border);
  border-radius: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.h8p1y-reel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.1s;
}
.h8p1y-reel-inner.spinning .h8p1y-symbol {
  animation: bzSpin 0.15s linear infinite;
}
@keyframes bzSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.h8p1y-symbol {
  font-size: 48px;
  line-height: 1;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.h8p1y-sep {
  color: var(--bz-border);
  font-size: 28px;
  font-weight: 300;
  padding: 0 6px;
}
.h8p1y-win-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 57, 57, 0.4),
    transparent
  );
  transform: translateY(-50%);
  pointer-events: none;
}
.h8p1y-controls {
  margin-bottom: 16px;
}
.h8p1y-spin-btn {
  font-size: 18px;
  font-weight: 800;
  padding: 16px 48px;
  border-radius: 10px;
  letter-spacing: 1px;
  gap: 10px;
}
.h8p1y-spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.h8p1y-result {
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  animation: bzFadeIn 0.3s ease;
}
.h8p1y-win {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.h8p1y-lose {
  background: rgba(255, 57, 57, 0.08);
  border: 1px solid rgba(255, 57, 57, 0.2);
}
.h8p1y-win-msg,
.h8p1y-lose-msg {
  margin-bottom: 14px;
}
.h8p1y-win-emoji,
.h8p1y-lose-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.h8p1y-win-msg strong {
  font-size: 20px;
  color: var(--bz-green);
  display: block;
  margin-bottom: 6px;
}
.h8p1y-win-msg p,
.h8p1y-lose-msg p {
  font-size: 15px;
  color: var(--bz-text);
}
.h8p1y-get-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}
.h8p1y-hint {
  font-size: 13px;
  color: var(--bz-muted);
  margin-top: 8px;
}
.h8p1y-hint strong {
  color: var(--bz-text);
}

.c9n5r-review {
}
.c9n5r-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bz-border);
}
.c9n5r-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bz-border);
}
.c9n5r-author-info {
  flex: 1;
}
.c9n5r-author-name {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.c9n5r-author-role {
  font-size: 12px;
  color: var(--bz-muted);
}
.c9n5r-updated {
  font-size: 12px;
  color: var(--bz-muted);
  margin-left: auto;
  text-align: right;
}

.c9n5r-body h1,
.c9n5r-body h2,
.c9n5r-body h3,
.c9n5r-body h4,
.c9n5r-body h5,
.c9n5r-body h6 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}
.c9n5r-body h1 {
  font-size: clamp(24px, 4vw, 34px);
}
.c9n5r-body h2 {
  font-size: clamp(20px, 3vw, 26px);
}
.c9n5r-body h3 {
  font-size: 18px;
}
.c9n5r-body h4 {
  font-size: 16px;
}
.c9n5r-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--bz-text);
  margin-bottom: 16px;
}
.c9n5r-body a {
  color: var(--bz-btn-red);
  text-decoration: underline;
}
.c9n5r-body a:hover {
  opacity: 0.8;
}
.c9n5r-body ul,
.c9n5r-body ol {
  margin: 0 0 16px 0;
  padding-left: 0;
}
.c9n5r-body ul li,
.c9n5r-body ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bz-text);
}
.c9n5r-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--bz-btn-red);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
.c9n5r-body ol {
  counter-reset: bz-ol;
}
.c9n5r-body ol li {
  counter-increment: bz-ol;
}
.c9n5r-body ol li::before {
  content: counter(bz-ol) ".";
  position: absolute;
  left: 0;
  color: var(--bz-btn-red);
  font-weight: 700;
  font-size: 14px;
}
.c9n5r-body strong,
.c9n5r-body b {
  color: #fff;
  font-weight: 700;
}
.c9n5r-body em,
.c9n5r-body i {
  font-style: italic;
}
.c9n5r-body blockquote {
  border-left: 3px solid var(--bz-btn-red);
  padding: 12px 20px;
  background: rgba(255, 57, 57, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.c9n5r-body blockquote p {
  margin: 0;
  color: rgba(232, 237, 244, 0.85);
}
.c9n5r-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.c9n5r-body table thead tr {
  background: rgba(255, 57, 57, 0.12);
  border-bottom: 2px solid rgba(255, 57, 57, 0.25);
}
.c9n5r-body table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.c9n5r-body table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--bz-border);
  color: var(--bz-text);
  vertical-align: top;
}
.c9n5r-body table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.c9n5r-body img {
  border-radius: 8px;
  margin: 16px 0;
}
.c9n5r-body hr {
  border: none;
  border-top: 1px solid var(--bz-border);
  margin: 28px 0;
}

.z3m7w-revs {
}
.z3m7w-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.z3m7w-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  padding: 22px;
  transition:
    border-color 0.25s,
    transform 0.25s;
  opacity: 0;
  transform: translateY(16px);
}
.z3m7w-card.bz-visible {
  opacity: 1;
  transform: translateY(0);
}
.z3m7w-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.z3m7w-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.z3m7w-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bz-border);
}
.z3m7w-name {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.z3m7w-stars {
  display: block;
  margin-top: 3px;
}
.z3m7w-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bz-text);
}
.z3m7w-date {
  font-size: 12px;
  color: var(--bz-muted);
  margin-top: 10px;
}
.z3m7w-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  padding: 32px;
}
.z3m7w-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.z3m7w-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  padding: 18px 20px;
}
.z3m7w-success-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.z3m7w-success strong {
  display: block;
  color: var(--bz-green);
  font-size: 16px;
  margin-bottom: 4px;
}
.z3m7w-success p {
  font-size: 14px;
  color: var(--bz-muted);
}
.z3m7w-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.z3m7w-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.z3m7w-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bz-muted);
  letter-spacing: 0.3px;
}
.z3m7w-input,
.z3m7w-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bz-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.z3m7w-input:focus,
.z3m7w-textarea:focus {
  outline: none;
  border-color: rgba(255, 57, 57, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 57, 57, 0.1);
}
.z3m7w-input.error,
.z3m7w-textarea.error {
  border-color: var(--bz-btn-red);
}
.z3m7w-input::placeholder,
.z3m7w-textarea::placeholder {
  color: rgba(154, 165, 180, 0.5);
}
.z3m7w-textarea {
  resize: vertical;
  min-height: 110px;
}
.z3m7w-rating-pick {
  display: flex;
  gap: 4px;
}
.z3m7w-star-pick {
  font-size: 28px;
  color: var(--bz-border);
  transition:
    color 0.15s,
    transform 0.15s;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}
.z3m7w-star-pick.active,
.z3m7w-star-pick:hover {
  color: #f59e0b;
  transform: scale(1.15);
}
.z3m7w-submit {
  align-self: flex-start;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.f1k8b-footer {
  background: var(--bz-header);
  border-top: 1px solid var(--bz-border);
  padding: 48px 0 24px;
  margin-top: 16px;
}
.f1k8b-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.f1k8b-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.f1k8b-logo-link img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}
.f1k8b-desc {
  font-size: 13px;
  color: var(--bz-muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 14px;
}
.f1k8b-age {
  display: inline-block;
  border: 1.5px solid var(--bz-border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bz-muted);
}
.f1k8b-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.f1k8b-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f1k8b-nav-link {
  font-size: 14px;
  color: var(--bz-muted);
  transition: color 0.2s;
}
.f1k8b-nav-link:hover {
  color: #fff;
}
.f1k8b-payments,
.f1k8b-providers {
  margin-bottom: 32px;
}
.f1k8b-pay-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.f1k8b-pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.f1k8b-pay-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bz-border);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.f1k8b-pay-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.f1k8b-prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.f1k8b-prov-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bz-border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bz-muted);
  transition:
    color 0.2s,
    background 0.2s;
}
.f1k8b-prov-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.f1k8b-bottom {
  border-top: 1px solid var(--bz-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.f1k8b-copy {
  font-size: 13px;
  color: var(--bz-muted);
}
.f1k8b-legal {
  font-size: 12px;
  color: rgba(154, 165, 180, 0.6);
  line-height: 1.65;
}
.f1k8b-link {
  color: var(--bz-muted);
  text-decoration: underline;
}
.f1k8b-link:hover {
  color: #fff;
}

.d4x9q-widget {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 12px 12px;
  opacity: 0;
  transition:
    bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s;
}
.d4x9q-widget.visible {
  bottom: 0;
  opacity: 1;
}
.d4x9q-inner {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a0a0a 0%, #1c1224 100%);
  border: 1px solid rgba(255, 57, 57, 0.35);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow:
    0 -4px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 57, 57, 0.15);
}
.d4x9q-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.d4x9q-bonus-badge {
  font-size: 13px;
  color: var(--bz-muted);
}
.d4x9q-bonus-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.d4x9q-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background: var(--bz-btn-red);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(255, 57, 57, 0.4);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.d4x9q-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 57, 57, 0.55);
  color: #fff;
  opacity: 1;
}
.d4x9q-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bz-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.d4x9q-close:hover {
  background: rgba(255, 57, 57, 0.25);
  color: #fff;
}

.wp-site-blocks,
.wp-block-group,
.elementor-section,
.wc-product-wrapper,
.elementor-badge {
  display: block;
}
.elementor-element {
  position: relative;
}
.entry-title,
.entry-meta,
.entry-content {
}
.post-type-page .entry-content p:last-child {
  margin-bottom: 0;
}
.wp-block-paragraph {
}
.aligncenter {
  text-align: center;
}
.wp-caption,
.gallery-caption {
  font-size: 13px;
  color: var(--bz-muted);
}
.has-text-align-center {
  text-align: center;
}
.wp-element-button {
  cursor: pointer;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bz-hidden-block {
  display: none !important;
}
.xf3r9k-unused-style {
  color: transparent;
  pointer-events: none;
}
.p7m2n-ghost-el {
  visibility: hidden;
  position: absolute;
  z-index: -999;
}
.r4n2b-faux {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.q8j5t-decoy {
  display: none;
}
[data-bz-track] {
  cursor: pointer;
}
[data-bz-src] {
  display: block;
}
.bz-lazy-placeholder {
  background: linear-gradient(
    90deg,
    var(--bz-card) 25%,
    rgba(255, 255, 255, 0.03) 50%,
    var(--bz-card) 75%
  );
  background-size: 200% 100%;
  animation: bzShimmer 1.5s infinite;
}
@keyframes bzShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.bz-tooltip {
  position: relative;
}
.bz-tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bz-btn-dark);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.bz-tooltip:hover::after {
  opacity: 1;
}
.bz-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.bz-badge--green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--bz-green);
}
.bz-badge--red {
  background: rgba(255, 57, 57, 0.15);
  color: var(--bz-btn-red);
}
.bz-divider {
  border: none;
  border-top: 1px solid var(--bz-border);
  margin: 24px 0;
}
.bz-flex {
  display: flex;
}
.bz-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bz-text-muted {
  color: var(--bz-muted);
}
.bz-text-white {
  color: #fff;
}
.bz-mt-auto {
  margin-top: auto;
}
.bz-gap-8 {
  gap: 8px;
}
.bz-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.xm7k9-logo-link img,
.f1k8b-logo-link img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .xm7k9-container {
    grid-template-columns: auto 1fr auto auto;
  }
  .xm7k9-online {
    display: none;
  }
  .w4j9n-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .f1k8b-top {
    grid-template-columns: 1fr 1fr;
  }
  .f1k8b-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 768px) {
  .xm7k9-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bz-header);
    border-bottom: 1px solid var(--bz-border);
  }

  .xm7k9-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 16px;
    max-width: 100%;
    gap: 12px;
  }

  .xm7k9-logo-wrap {
    flex: 0 0 auto;
  }

  .xm7k9-logo-link img {
    height: 32px;
    width: auto;
  }

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

  .xm7k9-btn {
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }

  .xm7k9-btn--login {
    background: var(--bz-btn-dark);
    color: var(--bz-text);
    border: 1px solid var(--bz-border);
  }

  .xm7k9-btn--signup {
    background: var(--bz-btn-red);
    color: #fff;
    box-shadow: 0 3px 14px rgba(255, 57, 57, 0.35);
  }

  .xm7k9-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--bz-btn-dark);
    border: 1px solid var(--bz-border);
    padding: 0;
    flex-shrink: 0;
  }

  .xm7k9-burger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .xm7k9-burger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .xm7k9-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .xm7k9-burger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .xm7k9-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .xm7k9-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .xm7k9-nav-wrap {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bz-header);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .xm7k9-nav-wrap.active {
    transform: translateX(0);
  }

  .xm7k9-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .xm7k9-nav li {
    border-bottom: 1px solid var(--bz-border);
  }

  .xm7k9-nav li:first-child {
    border-top: 1px solid var(--bz-border);
  }

  .xm7k9-nav-link {
    display: block;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bz-text);
    transition: all 0.2s ease;
  }

  .xm7k9-nav-link:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .xm7k9-nav-wrap .xm7k9-btns {
    display: none;
  }

  .xm7k9-header-outer {
    height: 60px;
  }

  .bz-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .m3b8q-hero {
    height: auto;
    min-height: 500px;
    padding: 80px 0 48px;
  }

  .m3b8q-hero-content-wrap {
    padding: 0 16px;
  }

  .m3b8q-hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .m3b8q-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .m3b8q-hero-trust {
    gap: 10px;
  }

  .section-block {
    padding: 32px 20px;
  }

  .w4j9n-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .v2t7m-grid {
    grid-template-columns: 1fr;
  }

  .b6q3k-slide img {
    height: 240px;
  }

  .b6q3k-caption {
    font-size: 13px;
    padding: 12px 14px;
  }

  .z3m7w-grid {
    grid-template-columns: 1fr;
  }

  .f1k8b-top {
    grid-template-columns: 1fr;
  }

  .h8p1y-reel {
    width: 80px;
    height: 80px;
  }

  .h8p1y-symbol {
    font-size: 36px;
  }

  .h8p1y-spin-btn {
    font-size: 16px;
    padding: 14px 36px;
  }

  .d4x9q-inner {
    flex-direction: row;
  }

  .d4x9q-bonus-val {
    font-size: 16px;
  }

  .c9n5r-author {
    flex-wrap: wrap;
  }

  .c9n5r-updated {
    margin-left: 0;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .xm7k9-container {
    padding: 0 12px;
    gap: 8px;
  }

  .xm7k9-logo-link img {
    height: 28px;
  }

  .xm7k9-btns {
    gap: 6px;
  }

  .xm7k9-btn {
    padding: 9px 12px;
    font-size: 13px;
  }

  .xm7k9-burger {
    width: 40px;
    height: 40px;
  }

  .xm7k9-burger span {
    width: 20px;
    height: 2px;
  }

  .xm7k9-nav-link {
    padding: 16px 16px;
    font-size: 15px;
  }

  .w4j9n-grid {
    grid-template-columns: 1fr;
  }

  .w4j9n-card {
    padding: 18px 16px;
  }

  .z3m7w-form-wrap {
    padding: 20px 16px;
  }

  .b6q3k-nav {
    display: none;
  }

  .m3b8q-hero-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .section-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .h8p1y-machine {
    max-width: 100%;
  }

  .h8p1y-reel {
    width: 72px;
    height: 72px;
  }

  .h8p1y-symbol {
    font-size: 30px;
  }

  .d4x9q-inner {
    padding: 12px 14px;
  }

  .d4x9q-bonus-val {
    font-size: 14px;
  }

  .d4x9q-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
