html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Marcellus';
  src: url('../fonts/Marcellus-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




body {
  margin: 0;
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
line-height: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

/* glob */

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.flex {
  display: flex;
}

.container {
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ====================
   Updated Luxury Header CSS
   ==================== */

.luxhdr {
  background: #281e0a;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  width: 100%;
  z-index: 111111111111111;
  position: fixed;
}

.luxhdr__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.luxhdr__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.luxhdr__logo-img {
  
  border-radius: 0 !important;
height: 71px;
  padding: 2px;
}

.luxhdr__brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #f80;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxhdr__nav {
  flex: 1;
  margin-left: 8px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxhdr__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.5px;
}

.luxhdr__nav-link {
  position: relative;
  color: inherit;
  transition: color 0.5s ease; /* плавная смена цвета */
}

.luxhdr__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* чуть ниже текста */
  width: 0%;
  height: 2.5px;
  background-color: #ead390;
  transition: width 0.5s ease;
}

.luxhdr__nav-link:hover {
  color: #ead390;
}

.luxhdr__nav-link:hover::after {
  width: 100%;
}

/* Активная ссылка — сразу с линией */
.luxhdr__nav-link--active {
  color: #ead390;
}

.luxhdr__nav-link--active::after {
  width: 100%;
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.luxhdr__drm {
  background: #ffdf78;
  color: #000000;
  font-weight: 700;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.02rem;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 14px rgba(255, 136, 0, 0.08);
 animation: filled-pulse 4s ease-in-out infinite;
   position: relative;      /* for the sheen layer */
  overflow: hidden;    
  transition: background .2s, color .2s, transform .2s;
}

.luxhdr__drm::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: translateX(-100%) skewX(-20deg);
  animation: drm-sheen 3s ease-in-out infinite;
  pointer-events: none;
}

.luxhdr__drm:hover {
  background: #e6a545;     /* slightly lighter gold */
  color: #111;
  transform: scale(1.05);
}


@keyframes drm-pulse {
  0%, 100% {
    box-shadow: 0 2px 14px rgba(255,136,0,0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255,136,0,0.2);
    transform: scale(1.03);
  }
}

/* ─ Sheen Sweep ──────────────────────────────────────────────────────────── */
@keyframes drm-sheen {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(200%) skewX(-20deg);
  }
}


.luxhdr__drm--login:hover {
  background: #fff;
  color: #f80;
}

.luxhdr__lang-switch {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  gap: 7px;
  text-decoration: none;
  font-size: 1.01rem;

  border-radius: 7px;


  transition: background .2s, color .2s;
}

.luxhdr__lang-switch:hover {
  background: rgb(153 104 0);
  color: #191919;
}

.luxhdr__lang-flag {
  height: 36px;

  border-radius: 4px;

}

.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 26px;
  background: #f80;
  border-radius: 2px;
  transition: all .2s;
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__container {
    padding: 0 12px;
  }

  .luxhdr__nav {
    margin-left: 0;
  }

  .luxhdr__actions {
    margin-left: auto;
  }

  .luxhdr__nav-list {
    gap: 20px;
  }
}

@media (max-width: 1280px) {
  .luxhdr__nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 26px 0 12px 0;
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.5, 0, .1, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
    z-index: 500;
  }

  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .luxhdr__burger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .luxhdr__brand {
    font-size: 1rem;
  }


  .luxhdr__btn {
    padding: 8px 13px;
    font-size: .96rem;
  }

  .luxhdr__container {
    height: 58px;
  }

  .luxhdr__lang-flag {
    height: 30px;

  }
}


.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  z-index: 999;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #CDDC39;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
  position: relative;
}

.luxhdr__burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.luxhdr__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.luxhdr__burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__burger {
    display: flex;
  }
}



.luxhdr__nav {
  flex: 1;
  margin-left: 48px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxhdr__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.5px;
}

.luxhdr__nav-link:hover,
.luxhdr__nav-link--active {
  color: rgb(247, 255, 24);
  border-bottom: 2.5px solid rgb(246, 255, 0);
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}




@keyframes drm-pulse {
  0%, 100% {
    box-shadow: 0 2px 14px rgba(255,136,0,0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255,136,0,0.2);
    transform: scale(1.03);
  }
}

/* ─ Sheen Sweep ──────────────────────────────────────────────────────────── */
@keyframes drm-sheen {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(200%) skewX(-20deg);
  }
}



.luxhdr__lang-switch {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  gap: 7px;
  text-decoration: none;
  font-size: 1.01rem;

  border-radius: 7px;


  transition: background .2s, color .2s;
}

.luxhdr__lang-switch:hover {
  background: rgb(1, 91, 28);
  color: #191919;
}

.luxhdr__lang-flag {
  height: 36px;

  border-radius: 4px;

}

.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 26px;
  background: #f80;
  border-radius: 2px;
  transition: all .2s;
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__container {
    padding: 0 12px;
  }

  .luxhdr__nav {
    margin-left: 0;
  }

  .luxhdr__actions {
    margin-left: auto;
  }

  .luxhdr__nav-list {
    gap: 20px;
  }
}

@media (max-width: 1280px) {
  .luxhdr__nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 26px 0 12px 0;
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.5, 0, .1, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
    z-index: 500;
  }

  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .luxhdr__burger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .luxhdr__brand {
    font-size: 1rem;
  }


  .luxhdr__btn {
    padding: 8px 13px;
    font-size: .96rem;
  }

  .luxhdr__container {
    height: 58px;
  }

  .luxhdr__lang-flag {
    height: 30px;

  }
}


.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  z-index: 999;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #CDDC39;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
  position: relative;
}

.luxhdr__burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.luxhdr__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.luxhdr__burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__burger {
    display: flex;
  }
}


@media (max-width: 1280px) {
  .luxhdr__nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 26px 0 12px 0;
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.5, 0, .1, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
    z-index: 500;
    display: block;
  }
  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .luxhdr__burger {
    display: flex;
  }
}

.prpr {
  width: 18px;
  backdrop-filter: invert(1);
  mask-image: white;
  border-radius: 100%;
}

.prpe {
  width: 18px;
  background-color: white;
  padding: 1px;
  fill: white;
  border-radius: 100%;
}


/* Language dropdown container */
.luxhdr__lang {
  position: relative;
}

/* Toggle button */
.luxhdr__lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px;
  background:  transparent;
  border-color: white;
  border-radius: 8px;
  color: var(--lux-text, #fff);
  cursor: pointer;
  border: none;
  transition: border-color .2s ease, background .2s ease;
}
.luxhdr__lang:hover {
  border-color: rgba(255,255,255,.3);
}
.luxhdr__lang.is-open {
  border-color: rgba(255,255,255,.45);
}

/* Caret rotation */
.luxhdr__lang-caret {
  transition: transform .2s ease;
  opacity: .8;
}
.luxhdr__lang-btn.is-open .luxhdr__lang-caret {
  transform: rotate(180deg);
}

/* Menu panel (animated) */
.luxhdr__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  background: rgba(18, 18, 20, .98);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  max-height: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .2s ease-in-out, max-height .22s ease;
  z-index: 50;
}
.luxhdr__lang-menu--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 260px; /* enough for items; animates open/close smoothly */
  pointer-events: auto;
}

/* Menu items */
.luxhdr__lang-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  background: #0f1122;
  border: 0;
  color: #e9e9ea;
  cursor: pointer;
  text-align: left;
  transition: background .15s ease, color .15s ease;
}
.luxhdr__lang-item img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15) inset;
}
.luxhdr__lang-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.luxhdr__lang-item.is-active {
  background: rgba(88, 101, 242, .14);
  color: #fff;
  display: none;
}





.zBD222-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
  color: white;
  text-align: center;
  /* ⇢ keeps everything centred at all sizes */
  --accent: #ff3366;
  --btn-hover: #ff5984;
}

/* Decorative background layers */
.zBD222-hero__bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zBD222-hero__bg-layer--glow {
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  mix-blend-mode: screen;
  z-index: -111;
}

/* Container */
.zBD222-hero__shell {
  max-width: 1240px;
  margin-inline: auto;
}

.zBD222-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

/* Typography */
.zBD222-hero__title {
  margin-bottom: 1.2rem;
}


.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* Image wrapper */
.zBD222-hero__figure {
  width: min(100%, 540px);
}

.zBD222-hero__frame {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.zBD222-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Buttons */
.zBD222-hero__ctas {
  display: flex;
  
  justify-content: center;
  gap: 1.1rem;
}

.zBD222-hero__btn {
  position: relative;
  padding: 0.95rem 2.3rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.zBD222-hero__btn--filled {
  background: var(--accent);
  color: #fff;
}

.zBD222-hero__btn--filled:hover {
  background: var(--btn-hover);
}

.zBD222-hero__btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.zBD222-hero__btn--outline:hover {
  color: #fff;
  background: var(--accent);
}

/* ✨ sheen animation */
.zBD222-hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.33), transparent);
  
}

.zBD222-hero__btn:hover::before {
  animation: 99RR-sheen 0.9s forwards;
}

@keyframes n99RR-sheen {
  to {
    left: 125%;
  }
}

/* ───────── Responsive tweaks ───────── */
@media (min-width: 768px) {
  .zBD222-hero {
    padding: 5rem 0 5rem 0;
  }

  .zBD222-hero__inner {
    gap: 3.25rem;
  }
}

/* ⬇︎ Updated styles for the “Elevate” section — no :root selector, no CSS variables */
.zBD222-elevate {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1rem;
  background-color: black;
  color: white;
  text-align: center;

}

/* ───── Animated backdrop ───── */
.zBD222-elevate__bg,
.zBD222-elevate__bg-glow,
.zBD222-elevate__bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}



.zBD222-elevate__bg-grid {
  background:#000000;
  mix-blend-mode: overlay;
  animation: 99RR-pan 30s linear infinite;
}

@keyframes n99RR-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes n99RR-pan {
  to {
    background-position: -300px 0;
  }
}

/* ───── Container & headline ───── */
.zBD222-elevate__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.zBD222-elevate__title {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.zBD222-elevate__intro {
  margin: 0 auto ;
}


/* ───── Grid layout ───── */
.zBD222-elevate__grid {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

.zBD222-elevate__figure {
  margin: 0 auto;
}

.zBD222-elevate__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

/* Feature call-outs */
.zBD222-elevate__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zBD222-elevate__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  
  margin: 0 auto;
  animation: 99RR-slide 0.8s ease both;
}

@keyframes n99RR-slide {
  from {
    transform: translateX(-28px);
    opacity: 0;
  }
}

.zBD222-elevate__text {
  margin: 0 auto;
}

.zBD222-elevate__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #ff2f6e;
  /* accent pink */
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.zBD222-elevate__btn:hover {
  background: #ff5984;
}

/* sheen sweep on hover */
.zBD222-elevate__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-25deg);
}

.zBD222-elevate__btn:hover::after {
  animation: 99RR-sheen 0.75s forwards;
}

@keyframes n99RR-sheen {
  to {
    left: 130%;
  }
}


.zBD222-trust {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background: #070912;
  color: #ffffff;
  text-align: center;

}

/* Neon aura + drifting dust dots */
.zBD222-trust__bg,
.zBD222-trust__aura,
.zBD222-trust__dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zBD222-trust__aura {
  background: radial-gradient(circle at 80% 20%, rgb(255 208 45 / 28%), transparent 60%);
  animation: trust-rotate 18s linear infinite;
  filter: blur(70px);
}

.zBD222-trust__dust {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.zBD222-trust__dust li {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff2d6e;
  border-radius: 50%;
  opacity: .75;
  animation: trust-float 12s linear infinite;
}

.zBD222-trust__dust li:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: -2s;
}

.zBD222-trust__dust li:nth-child(2) {
  top: 35%;
  left: 80%;
  animation-delay: -4s;
}

.zBD222-trust__dust li:nth-child(3) {
  top: 65%;
  left: 25%;
  animation-delay: -6s;
}

.zBD222-trust__dust li:nth-child(4) {
  top: 50%;
  left: 60%;
  animation-delay: -1s;
}

.zBD222-trust__dust li:nth-child(5) {
  top: 75%;
  left: 90%;
  animation-delay: -8s;
}

@keyframes trust-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trust-float {
  to {
    transform: translateY(-60px) rotate(360deg);
  }
}

/* Content wrap */
.zBD222-trust__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.zBD222-trust__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 1.8rem;
}

/* Grid layout */
.zBD222-trust__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* Statements */
.zBD222-trust__statements {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.zBD222-trust__row {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.zBD222-trust__tag {
  display: flex;
  align-items: center;
  /* align center as required */
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  animation: trust-slide .8s ease both;
}

@keyframes trust-slide {
  from {
    transform: translateX(-28px);
    opacity: 0;
  }
}

.zBD222-trust__text {
  max-width: 620px;
  margin: 0 auto;
}

/* Illustration */
.zBD222-trust__figure {
  margin: 0 auto;
}

.zBD222-trust__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .6);
}

/* CTA */
.zBD222-trust__cta {
  margin-top: 3.4rem;
}

.zBD222-trust__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #ff2d6e;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.zBD222-trust__btn:hover {
  background: #ff5b87;
}

/* sheen sweep */
.zBD222-trust__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.zBD222-trust__btn:hover::after {
  animation: trust-sheen .75s forwards;
}

@keyframes trust-sheen {
  to {
    left: 130%;
  }
}

/* Responsive two-column switch */
@media(min-width:768px) {
  .zBD222-trust__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.zBD222-journey {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background: #050565;
  color: #ffffff;
  text-align: center;

}

/* Gradient wave layers */
.zBD222-journey__bg,
.zBD222-journey__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zBD222-journey__wave--one {
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 208, 55, 0.25), transparent 70%);
  animation: journey-pulse 18s ease-in-out infinite;
}

.zBD222-journey__wave--two {
  background: radial-gradient(ellipse at 70% 70%, rgb(255 241 75 / 22%), transparent 70%);
  animation: journey-pulse 22s ease-in-out infinite reverse;
}

@keyframes journey-pulse {
  50% {
    transform: scale(1.15);
  }
}

/* Canvas sparkles (optional JS) */
.zBD222-journey__spark {
  position: absolute;
  inset: 0;
}

/* Main wrap */
.zBD222-journey__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.zBD222-journey__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2rem;
}

.zBD222-journey__intro {
  margin: 0 auto ;
}

/* Grid */
.zBD222-journey__grid {
  display: grid;
  margin-bottom: 20px;
  align-items: center;
}

/* Features */
.zBD222-journey__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.zBD222-journey__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-journey__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

/* Tag styling per spec */
.zBD222-journey__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  margin: 0 auto;
  animation: journey-slide .8s ease both;
}

@keyframes journey-slide {
  from {
    transform: translateX(-26px);
    opacity: 0;
  }
}

.zBD222-journey__text {
  margin: 0 auto;
}

/* Illustration */
.zBD222-journey__figure {
  
  margin: 0 auto;
  margin-bottom: 20px;
}

.zBD222-journey__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .6);
}

/* CTA */
.zBD222-journey__cta {
  margin-top: 3.4rem;
}

.zBD222-journey__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #ff3773;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.zBD222-journey__btn:hover {
  background: #ff5d8d;
}

/* sheen */
.zBD222-journey__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.zBD222-journey__btn:hover::after {
  animation: journey-sheen .8s forwards;
}

@keyframes journey-sheen {
  to {
    left: 130%;
  }
}


/* ───── JE777 Game Sections (no line-height) ───── */
.zBD222-gamesec {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem 1rem;
background: #000000;
    color: white;
  text-align: center;

}

/* Animated BG glows */
.zBD222-gamesec__bg,
.zBD222-gamesec__glow,
.zBD222-gamesec__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zBD222-gamesec__glow--pink {
  background: radial-gradient(circle at 15% 30%, rgba(255, 214, 52, 0.18), transparent 65%);
  animation: gamesec-glow 14s linear infinite;
  filter: blur(44px);
}

.zBD222-gamesec__glow--blue {
  background: radial-gradient(circle at 80% 80%, rgba(255, 218, 72, 0.15), transparent 70%);
  animation: gamesec-glow 20s linear infinite reverse;
  filter: blur(54px);
}

@keyframes gamesec-glow {
  50% {
    opacity: 0.55;
  }
}

/* Floating emojis */
.zBD222-gamesec__floaters {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zBD222-gamesec__icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: .17;
  user-select: none;
  pointer-events: none;
  animation: gamesec-float 9s infinite ease-in-out alternate;
}

.zBD222-gamesec__icon--slot {
  top: 12%;
  left: 15%;
  animation-delay: 0s;
}

.zBD222-gamesec__icon--cards {
  top: 66%;
  left: 78%;
  animation-delay: -3s;
}

.zBD222-gamesec__icon--rocket {
  top: 39%;
  left: 54%;
  animation-delay: -5s;
}

@keyframes gamesec-float {
  100% {
    transform: translateY(35px) scale(1.1);
  }
}

/* Wrapper */
.zBD222-gamesec__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.games-body {
  display: flex;
  flex-direction: column;
}

/* Header */
.zBD222-gamesec__title {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2rem;
}

.zBD222-gamesec__intro {
  margin: 0 auto ;
}

/* Main grid */
.zBD222-gamesec__grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  justify-items: center;
}

/* Game boxes */
.zBD222-gamesec__box {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.16);
  padding: 2.1rem 1.2rem 1.5rem 1.2rem;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 1.1rem;
  animation: gamesec-slide .8s cubic-bezier(.62, .09, .41, .95) both;
}

@keyframes gamesec-slide {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
}

.zBD222-gamesec__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.08rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(3px);
  border-radius: 5px;
  
  margin: 0 auto;
}

.zBD222-gamesec__desc {
  margin: 0 auto;
}

/* Illustration */
.zBD222-gamesec__figure {
  width: 100%;
  margin: 0 auto;
}

.zBD222-gamesec__img {
  width: 100%;
  display: block;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 1.7rem;
}

/* CTA */
.zBD222-gamesec__cta {
  margin-top: 3.2rem;
}

.zBD222-gamesec__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffd622;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.zBD222-gamesec__btn:hover {
  background: #ff67b7;
}

.zBD222-gamesec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.zBD222-gamesec__btn:hover::after {
  animation: gamesec-sheen .8s forwards;
}

@keyframes gamesec-sheen {
  to {
    left: 130%;
  }
}

/* Responsive: 2 columns + image at >= 768px */
@media (min-width: 768px) {
  .zBD222-gamesec__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

}

@media (max-width: 991px) and (min-width: 768px) {
  .zBD222-gamesec__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "box1 figure"
      "box2 box3";
  }

  .zBD222-gamesec__box:nth-child(1) {
    grid-area: box1;
  }

  .zBD222-gamesec__box:nth-child(2) {
    grid-area: box2;
  }

  .zBD222-gamesec__box:nth-child(3) {
    grid-area: box3;
  }

  .zBD222-gamesec__figure {
    grid-area: figure;
  }
}

.zBD222-cardsec {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  overflow: hidden;
  color: #fff;
  text-align: center;

}

/* Background icon grid, animating in opacity/blur for interest */
.zBD222-cardsec__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  opacity: 0.16;
  gap: 0;
}

.zBD222-cardsec__icon {
  font-size: 3.5rem;
  filter: blur(1.2px);
  animation: cardsec-bgicon 18s linear infinite alternate;
}

@keyframes cardsec-bgicon {
  0% {
    opacity: 0.14;
    transform: scale(1);
  }

  100% {
    opacity: 0.32;
    transform: scale(1.11);
  }
}

/* Max-width content */
.zBD222-cardsec__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

/* Header */
.zBD222-cardsec__header {
  margin-bottom: 1.2rem;
}

.zBD222-cardsec__title {
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.zBD222-cardsec__desc {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7em;
}

/* Tag for main subtitle */
.zBD222-cardsec__tag {
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #ffd622;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(174, 112, 255, 0.13);
  border-radius: 6px;
  margin: 0 0 0.7em 0;
  gap: .5em;
}

/* Card grid */
.zBD222-cardsec__grid {
  width: 100%;
  
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
  margin-bottom: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .zBD222-cardsec__grid {
    grid-template-columns: 1fr 1fr;
    
  }
}



/* Individual card */
.zBD222-cardsec__card {
  background: #000000;
  border-radius: 20px;
  box-shadow: 0 7px 28px #ffd6222a;
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  transition: transform .3s cubic-bezier(.65, 1.4, .47, 1), box-shadow .3s;
  animation: cardsec-cardin .85s cubic-bezier(.5, 1.9, .41, 1) both;
}

.zBD222-cardsec__card:hover {
  transform: translateY(-11px) scale(1.038);
  box-shadow: 0 14px 38px #ffd6223a, 0 0 0 2px #6a19c980;
}

/* Icon on top of card */
.zBD222-cardsec__card-ico {
  font-size: 2.3rem;
  color: #ffd370;
  background: rgba(174, 112, 255, 0.08);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  box-shadow: 0 3px 10px #ffd62221;
  animation: cardsec-icopulse 2.8s infinite alternate;
}

@keyframes cardsec-icopulse {
  0% {
    box-shadow: 0 3px 10px #ffd62221;
  }

  100% {
    box-shadow: 0 7px 24px #ffd62238;
  }
}

/* Card tag line (for angle brackets) */
.zBD222-cardsec__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #ffd622;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(174, 112, 255, 0.10);
  border-radius: 6px;
  
  margin: 0 auto 0.22em auto;
  gap: .5em;
  color: #fff;
}

.zBD222-cardsec__card-text {
  
  font-size: 1.01rem;
  margin: 0 auto;
}

/* Image & CTA */
.zBD222-cardsec__bottom {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.zBD222-cardsec__figure {

  width: 100%;
  margin: 0 auto;
}

.zBD222-cardsec__img {
  width: 100%;
  border-radius: 13px;
  box-shadow: 0 7px 30px #ffd62224;
  display: block;
}

.zBD222-cardsec__cta {
  margin-top: .3rem;
}

.zBD222-cardsec__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #ffd622;
  color: #251547;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 55px;
  overflow: hidden;
  transition: background .3s cubic-bezier(.33, .73, .65, 1), color .3s;
  box-shadow: 0 2px 18px #ffd62225;
}

.zBD222-cardsec__btn:hover {
  background: #bc8aff;
  color: #2d0d60;
}

.zBD222-cardsec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .40), transparent);
  transform: skewX(-25deg);
}

.zBD222-cardsec__btn:hover::after {
  animation: cardsec-sheen .7s forwards;
}

@keyframes cardsec-sheen {
  to {
    left: 130%;
  }
}

@keyframes cardsec-cardin {
  from {
    transform: translateY(40px) scale(.92);
    opacity: 0;
  }
}

.zBD222-faq {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  position: relative;
  padding: 5rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-faq__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-faq__bubble {
  position: absolute;
  bottom: -40px;
  left: 15%;
  width: 32px;
  height: 32px;
  background: rgba(174, 112, 255, 0.14);
  border-radius: 50%;
  filter: blur(2px);
  animation: faq-bubble 17s linear infinite;
}

.zBD222-faq__bubble:nth-child(2) {
  left: 37%;
  width: 20px;
  height: 20px;
  animation-delay: 3s;
}

.zBD222-faq__bubble:nth-child(3) {
  left: 66%;
  width: 25px;
  height: 25px;
  animation-delay: 7s;
}

.zBD222-faq__bubble:nth-child(4) {
  left: 88%;
  width: 15px;
  height: 15px;
  animation-delay: 10s;
}

@keyframes faq-bubble {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-680px) scale(1.15);
  }
}

.zBD222-faq__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.zBD222-faq__header {
  margin-bottom: 1.7rem;
}

.zBD222-faq__title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
}

/* Accordion styles */
.zBD222-faq__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.zBD222-faq__item {
background: #ebebeb87;
    color: white;
    border-radius: 4rem;
    box-shadow: 0 4px 18px #ffd62225;
    overflow: hidden;
    transition: box-shadow .25s;
}

.zBD222-faq__q {
  width: 100%;
  border: none;
  background: none;
  
  font-weight: 600;
  font-size: 1.11rem;
  text-align: left;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 1em;
  transition: background .25s, color .2s;
}

.zBD222-faq__q-ico {
  font-size: 1.3em;
  margin-right: .6em;
}

.zBD222-faq__q[aria-expanded="true"] {
  color: #524300;
  background: rgba(174, 112, 255, 0.06);
}

.zBD222-faq__a {
  display: none;
  padding: 0 1.8rem 1.5rem 3.5rem;
  color: #000;
  text-align: left;
  font-size: 1.02rem;
  animation: faq-fadein .35s cubic-bezier(.42, .22, .47, 1) both;
}

@keyframes faq-fadein {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.zBD222-faq__item.open .zBD222-faq__a {
  display: block;
  padding: 20px 40px;
}

/* CTA */
.zBD222-faq__cta {
  margin-top: 1.7rem;
}

.zBD222-faq__btn {
  display: inline-block;
  background: #ffd622;
  color: #2d0d60;
  padding: 1rem 2.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 44px;
  letter-spacing: .04em;
  font-size: 1.02rem;
  transition: background .23s, color .23s;
  box-shadow: 0 2px 18px #ffd6221a;
  position: relative;
  overflow: hidden;
}

.zBD222-faq__btn:hover {
  background: #bc8aff;
  color: #190f31;
}

.zBD222-faq__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .33), transparent);
  transform: skewX(-25deg);
}

.zBD222-faq__btn:hover::after {
  animation: faq-btnsheen .7s forwards;
}

@keyframes faq-btnsheen {
  to {
    left: 130%;
  }
}

.zBD222-casinohero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.zBD222-casinohero__bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
  z-index: 1;
}

.zBD222-casinohero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) blur(1.5px);
  position: absolute;
  inset: 0;
}

.zBD222-casinohero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  z-index: 2;
}

.zBD222-casinohero__glow {
  position: absolute;
  border-radius: 50%;
  opacity: .17;
  pointer-events: none;
  z-index: 3;
  filter: blur(30px);
  animation: casinohero-glowmove 14s ease-in-out infinite alternate;
}

.zBD222-casinohero__glow--1 {
  width: 430px;
  height: 320px;
  left: -120px;
  top: 60px;
  background: radial-gradient(circle at 60% 35%, #ff52e4 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-casinohero__glow--2 {
  width: 340px;
  height: 220px;
  right: -90px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #67eaff 0%, transparent 100%);
  animation-delay: 3s;
}

@keyframes casinohero-glowmove {
  0% {
    opacity: 0.13;
  }

  100% {
    opacity: 0.28;
  }
}

.zBD222-casinohero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.zBD222-casinohero__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.zBD222-casinohero__header {
  margin-bottom: 1.6rem;
}

.zBD222-casinohero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -.01em;
  line-height: 1.16;
}

.zBD222-casinohero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}


.zBD222-casinohero__figure {
  margin: 0 auto 1rem auto;
  width: 170px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-casinohero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 40px #00000044, 0 0 0 3px #2d0c4e33;
}

.zBD222-casinohero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.zBD222-casinohero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #7b46ff29;
  cursor: pointer;
  outline: none;
  background: #67eaff;
  color: #26043b;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.zBD222-casinohero__btn--main {
  background: linear-gradient(90deg, #67eaff 40%, #ff52e4 100%);
  color: #20044b;
}

.zBD222-casinohero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #67eaff;
  box-shadow: none;
}

.zBD222-casinohero__btn--main:hover,
.zBD222-casinohero__btn--main:focus {
  background: linear-gradient(90deg, #ff52e4 10%, #67eaff 80%);
  color: #1a1437;
}


.zBD222-casinohero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.zBD222-casinohero__btn:hover::after {
  animation: casinohero-btnsheen .7s forwards;
}

@keyframes casinohero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .zBD222-casinohero__ctas {
    flex-direction: row;
    justify-content: center;
    
  }

  .zBD222-casinohero__figure {
    width: 210px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .zBD222-casinohero__figure {
    width: 135px;
  }
}

.zBD222-action {
background-color: #000000;
color: white;
  position: relative;
  padding: 3rem 0 3rem 0;
  
  text-align: center;

  overflow: hidden;
}

.zBD222-action__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-action__chips {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.zBD222-action__chip {
  position: absolute;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%, #ffef8a 65%, #f855ee 100%);
  opacity: .12;
  animation: 99RR-chipfloat 8s infinite alternate;
}

.zBD222-action__chip--1 {
  left: 6%;
  top: 18%;
  animation-delay: 0s;
}

.zBD222-action__chip--2 {
  right: 8%;
  top: 8%;
  animation-delay: 2s;
}

.zBD222-action__chip--3 {
  right: 13%;
  bottom: 13%;
  animation-delay: 4s;
}

@keyframes z99RR-chipfloat {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.08) translateY(30px);
  }
}

.zBD222-action__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #00faff 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  filter: blur(24px);
  animation: 99RR-sparkle 10s linear infinite alternate;
}

.zBD222-action__spark--1 {
  width: 210px;
  height: 180px;
  left: -50px;
  top: 35%;
  animation-delay: 0s;
}

.zBD222-action__spark--2 {
  width: 170px;
  height: 140px;
  right: -38px;
  bottom: 9%;
  animation-delay: 5s;
}

@keyframes z99RR-sparkle {
  0% {
    opacity: 0.14;
  }

  100% {
    opacity: 0.26;
  }
}

.zBD222-action__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.zBD222-action__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2.3rem;
}

.zBD222-action__header {
  margin-bottom: .2em;
}

.zBD222-action__title {
  font-size: clamp(2.05rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.2em 0;
}

.zBD222-action__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.zBD222-action__cards {
    display: grid
;
    gap: 1.4rem;
  width: 100%;
  margin-bottom: 1.6rem;
}

.zBD222-action__block {
  background: rgb(194 227 194 / 29%);
  border-radius: 4rem;
  box-shadow: 0 5px 28px #ffffff;
  padding: 2.1rem 1.5rem 1.4rem 1.5rem;
  gap: .9rem;
  animation: 99RR-cardin .7s cubic-bezier(.5, 1.4, .41, 1) both;
}

@keyframes z99RR-cardin {
  from {
    transform: translateY(40px) scale(.93);
    opacity: 0;
  }
}

.zBD222-action__block-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #f855ee;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(248, 85, 238, 0.13);
  border-radius: 6px;
  
  margin: 0 auto 0.19em auto;
  gap: .5em;
}

.zBD222-action__block-text {
  font-size: 1.01rem;
  margin: 0 auto;
}

.zBD222-action__figure {
  margin: 0 auto 1.1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-action__img {
  width: 100%;
  display: block;
  border-radius: 17px;
  box-shadow: 0 8px 30px #fff4e831, 0 0 0 2px #e9ff6d33;
}

.zBD222-action__cta {
  margin-top: 1rem;
}

.zBD222-action__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.5rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #f855ee22;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #e9ff6d 10%, #f855ee 90%);
  color: #200b2c;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.zBD222-action__btn:hover,
.zBD222-action__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #e9ff6d 90%);
  color: #32164e;
}

.zBD222-action__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.zBD222-action__btn:hover::after {
  animation: 99RR-btnsheen .7s forwards;
}

@keyframes z99RR-btnsheen {
  to {
    left: 130%;
  }
}



.zBD222-categories {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-categories__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-categories__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffcc42 0%, transparent 100%);
  filter: blur(28px);
  animation: 99RR-catspark 12s linear infinite alternate;
}

.zBD222-categories__spark--left {
  width: 190px;
  height: 150px;
  left: -50px;
  top: 33%;
  animation-delay: 0s;
}

.zBD222-categories__spark--right {
  width: 160px;
  height: 130px;
  right: -38px;
  bottom: 8%;
  animation-delay: 3s;
}

@keyframes z99RR-catspark {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.27;
  }
}

.zBD222-categories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-categories__header {
  margin-bottom: 1.5rem;
}

.zBD222-categories__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.zBD222-categories__desc {
  font-size: 1.08rem;
  max-width: 570px;
  margin: 0 auto;
}

.zBD222-categories__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 0 auto 2.8rem auto;
  justify-items: center;
}

@media (max-width: 800px) {
 .zBD222-categories__grid {
    /* 6 равных колонок вместо 3 */
    grid-template-columns: 1fr 1fr;
    
  }

  
}

.zBD222-action__cards-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.zBD222-categories__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffffffde;
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;

  animation: 99RR-catcardin .9s cubic-bezier(.5, 1.4, .41, 1) both;
  transition: box-shadow .28s, transform .24s;
}

.zBD222-categories__card:hover {
  box-shadow: 0 15px 54px #ffcc4251, 0 0 0 2px #ffcc42bb;
  transform: translateY(-11px) scale(1.045);
}

@keyframes z99RR-catcardin {
  from {
    transform: translateY(46px) scale(.95);
    opacity: 0;
  }
}

.zBD222-categories__imgwrap {

  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22px #ffcc4261;
  background: #1c1031;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-categories__img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.zBD222-categories__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.zBD222-categories__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 204, 66, 0.08);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.zBD222-categories__card-text {
  font-size: 1.01rem;

  margin: 0 auto;
  text-align: center;
}


.zBD222-categories__cta {
  margin-top: .7rem;
}

.zBD222-categories__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffcc4239;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffcc42 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-categories__btn:hover,
.zBD222-categories__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffcc42 90%);
  color: #32164e;
}

.zBD222-categories__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-categories__btn:hover::after {
  animation: 99RR-catbtnsheen .6s forwards;
}

@keyframes z99RR-catbtnsheen {
  to {
    left: 130%;
  }
}

.zBD222-whyus {
  background: #000000;
  color: white;
  padding: 0;
  

  padding: 5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.zBD222-whyus__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.7rem;
}

.zBD222-whyus__imgbox {
  position: relative;


  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-whyus__img-bg {
  position: absolute;
  width: 95%;
  height: 88%;
  left: 2.5%;
  top: 6%;
  background: radial-gradient(circle, #ffcc42 0%, #421885 90%);
  border-radius: 30% 70% 57% 43% / 47% 37% 63% 53%;
  filter: blur(35px);
  opacity: .19;
  z-index: 1;
  animation: whyus-imgbg 14s ease-in-out infinite alternate;
}

@keyframes whyus-imgbg {
  0% {
    border-radius: 30% 70% 57% 43% / 47% 37% 63% 53%;
  }

  100% {
    border-radius: 46% 54% 65% 35% / 38% 68% 32% 62%;
  }
}

.zBD222-whyus__img {
  z-index: 2;
  position: relative;

  border-radius: 24px;
  box-shadow: 0 9px 44px #ffcc4238, 0 0 0 2px #ffcc4239;
  animation: whyus-imgpop 1.2s cubic-bezier(.45, .88, .28, 1.16) both;
}

@keyframes whyus-imgpop {
  from {
    opacity: 0;
    transform: scale(.85);
  }
}

.zBD222-whyus__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6e7 0%, #ffe49f 60%, #ffcc421c 90%, transparent 100%);
  opacity: .22;
  z-index: 0;
  animation: whyus-pulse 2.8s infinite alternate;
}

@keyframes whyus-pulse {
  0% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(.98);
  }

  100% {
    opacity: .29;
    transform: translate(-50%, -50%) scale(1.10);
  }
}

.zBD222-whyus__floatingicon {
  position: absolute;
  right: 15px;
  bottom: 25px;
  font-size: 2.7rem;
  color: #ffcc42;
  filter: drop-shadow(0 4px 12px #ffcc42a1);
  z-index: 3;
  opacity: .63;
  animation: whyus-float 3.2s infinite alternate;
}

@keyframes whyus-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* Right: Content */
.zBD222-whyus__content {
  flex: 1 1 440px;
  min-width: 260px;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  text-align: center;
}

.zBD222-whyus__header {
  margin-bottom: .7rem;
}

.zBD222-whyus__title {
  font-size: clamp(2rem, 4vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 1.2em 0;
}

.zBD222-whyus__descwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.zBD222-whyus__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}
.zBD222-whyus__cta {
  margin-top: .8rem;
}

.zBD222-whyus__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffcc4235;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffcc42 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-whyus__btn:hover,
.zBD222-whyus__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffcc42 90%);
  color: #32164e;
}

.zBD222-whyus__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-whyus__btn:hover::after {
  animation: whyus-btnsheen .62s forwards;
}

@keyframes whyus-btnsheen {
  to {
    left: 130%;
  }
}

.zBD222-whyus__footer-text {
  margin-top: 1.2rem;
  color: #ffecbb;
  font-size: 1rem;
  max-width: 470px;
  opacity: .86;
}

@media (max-width: 900px) {
  .zBD222-whyus__container {
    flex-direction: column;
    gap: 3.7rem;
  }

  .zBD222-whyus__imgbox {

    margin-bottom: 1.4rem;
  }



  .zBD222-whyus__pulse {
    width: 88px;
    height: 88px;
  }

  .zBD222-whyus__floatingicon {
    font-size: 1.7rem;
    right: 2px;
    bottom: 2px;
  }

  .zBD222-whyus__content {
    max-width: 98vw;
  }
}

.zBD222-slotshero {
  position: relative;
background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.zBD222-slotshero__bg {
  position: absolute;
  inset: 0;

  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.zBD222-slotshero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(1.5px);
  position: absolute;
  inset: 0;
}

.zBD222-slotshero__overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 2;
}

.zBD222-slotshero__glow {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  pointer-events: none;
  z-index: 3;
  filter: blur(38px);
  animation: slotshero-glowmove 14s ease-in-out infinite alternate;
}

.zBD222-slotshero__glow--1 {
  width: 410px;
  height: 280px;
  left: -100px;
  top: 100px;
  background: radial-gradient(circle at 65% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-slotshero__glow--2 {
  width: 270px;
  height: 210px;
  right: -80px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes slotshero-glowmove {
  0% {
    opacity: 0.11;
  }

  100% {
    opacity: 0.27;
  }
}

.zBD222-slotshero__container {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 ;
}

.zBD222-slotshero__content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.zBD222-slotshero__header {
  margin-bottom: 1.6rem;
}

.zBD222-slotshero__title {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -.01em;
}

.zBD222-slotshero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.zBD222-slotshero__figure {
  margin: 0 auto 1rem auto;
  width: 180px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-slotshero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 44px #ffe5732e, 0 0 0 3px #f855ee3a;
}

.zBD222-slotshero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.zBD222-slotshero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57329;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.zBD222-slotshero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #3a0155;
}

.zBD222-slotshero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.zBD222-slotshero__btn--main:hover,
.zBD222-slotshero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

.zBD222-slotshero__btn--ghost:hover,
.zBD222-slotshero__btn--ghost:focus {
  background: #ffe573;
color: #dfdfdf;
    border-color: #71f855;
}

.zBD222-slotshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .17), transparent);
  transform: skewX(-25deg);
}

.zBD222-slotshero__btn:hover::after {
  animation: slotshero-btnsheen .7s forwards;
}

@keyframes slotshero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .zBD222-slotshero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1.8rem;
  }

  .zBD222-slotshero__figure {
    width: 240px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .zBD222-slotshero__figure {
    width: 120px;
  }
}

.zBD222-slotscats {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-slotscats__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-slotscats__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: 99RR-sparkle-cats 12s linear infinite alternate;
}

.zBD222-slotscats__spark--left {
  width: 210px;
  height: 160px;
  left: -60px;
  top: 37%;
  animation-delay: 0s;
}

.zBD222-slotscats__spark--right {
  width: 160px;
  height: 130px;
  right: -45px;
  bottom: 6%;
  animation-delay: 4s;
}

@keyframes z99RR-sparkle-cats {
  0% {
    opacity: 0.13;
  }

  100% {
    opacity: 0.25;
  }
}

.zBD222-slotscats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-slotscats__header {
  margin-bottom: 1.6rem;
}

.zBD222-slotscats__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin:  0;
}

.zBD222-slotscats__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.zBD222-slotscats__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0 auto 1rem auto;
  justify-items: center;
}


.zBD222-slotscats__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57339;
  padding: 2.2rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  width: 100%;
  animation: 99RR-cardin-slots 1s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .25s, transform .19s;
}

.zBD222-slotscats__card:hover {
  box-shadow: 0 15px 44px #ffe573a1, 0 0 0 2px #ffe573c5;
  transform: translateY(-12px) scale(1.055);
}

@keyframes z99RR-cardin-slots {
  from {
    transform: translateY(38px) scale(.93);
    opacity: 0;
  }
}

.zBD222-slotscats__imgwrap {

  font-size: 50px;
  overflow: hidden;
  margin-bottom: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-slotscats__img {
  object-fit: contain;
  display: block;
}

.zBD222-slotscats__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.zBD222-slotscats__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.zBD222-slotscats__card-text {
  font-size: 1.01rem;
  
  margin: 0 auto;
  text-align: center;
}


.zBD222-slotscats__cta {
  margin-top: .6rem;
}

.zBD222-slotscats__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731e;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-slotscats__btn:hover,
.zBD222-slotscats__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-slotscats__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-slotscats__btn:hover::after {
  animation: 99RR-btnsheen-slots .6s forwards;
}

@keyframes z99RR-btnsheen-slots {
  to {
    left: 130%;
  }
}


.zBD222-slotshowto {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-slotshowto__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-slotshowto__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(26px);
  animation: 99RR-slotshowto-spark 13s linear infinite alternate;
}

.zBD222-slotshowto__spark--left {
  width: 180px;
  height: 150px;
  left: -50px;
  top: 22%;
  animation-delay: 0s;
}

.zBD222-slotshowto__spark--right {
  width: 170px;
  height: 120px;
  right: -38px;
  bottom: 10%;
  animation-delay: 4s;
}

@keyframes z99RR-slotshowto-spark {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.22;
  }
}

.zBD222-slotshowto__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.zBD222-slotshowto__header {
  margin-bottom: 1.4rem;
}

.zBD222-slotshowto__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
}

.zBD222-slotshowto__tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-slotshowto__tablist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;

  background: rgba(255, 255, 255, 0.03);
  padding: .5rem 1rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px #ffe5731e;
}

.zBD222-slotshowto__tab {
  font-size: 1.02rem;
  font-weight: 600;
  background: none;
  border: none;
  color: #ffe573;
  border-radius: 18px;
  padding: .82em 1.7em;
  cursor: pointer;
  transition: background .18s, color .16s;
  outline: none;
  position: relative;
}

.zBD222-slotshowto__tab--active,
.zBD222-slotshowto__tab[aria-selected="true"] {
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #310650;
  box-shadow: 0 2px 12px #ffe5734d;
}

.zBD222-slotshowto__tab:not(.zBD222-slotshowto__tab--active):hover {
  background: rgba(255, 229, 115, 0.11);
  color: #f855ee;
}

.zBD222-slotshowto__tabpanels {
  width: 100%;

}

.zBD222-slotshowto__panel {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.1rem;
  animation: 99RR-panelin 0.7s cubic-bezier(.45, 1.4, .36, 1.12) both;
}

.zBD222-slotshowto__panel--active {
  display: flex;
}

@keyframes z99RR-panelin {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.95);
  }
}

.zBD222-slotshowto__panel-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.zBD222-slotshowto__panel-imgwrap {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
  background: #1c1031;
  box-shadow: 0 3px 14px #ffe5732a;
  display: flex;

  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.zBD222-slotshowto__panel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.zBD222-slotshowto__panel-desc {
  font-size: 1.08rem;

  margin: 0 auto;
  text-align: center;
}

.zBD222-slotshowto__cta {
  margin-top: 2.1rem;
}

.zBD222-slotshowto__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731e;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-slotshowto__btn:hover,
.zBD222-slotshowto__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-slotshowto__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-slotshowto__btn:hover::after {
  animation: 99RR-btnsheen-slotshowto .6s forwards;
}

@keyframes z99RR-btnsheen-slotshowto {
  to {
    left: 130%;
  }
}



.zBD222-slotsnew {
 position: relative;
  padding: 3rem 0 3rem 0;
background: #000000;
color: white;
  overflow: hidden;
  text-align: center;
}

.zBD222-slotsnew__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-slotsnew__starburst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  filter: blur(20px);
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: 99RR-slotsnew-starburst 14s infinite alternate;
}

.zBD222-slotsnew__starburst--1 {
  width: 180px;
  height: 140px;
  left: -60px;
  top: 18%;
  animation-delay: 0s;
}

.zBD222-slotsnew__starburst--2 {
  width: 120px;
  height: 90px;
  right: -44px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes z99RR-slotsnew-starburst {
  0% {
    opacity: .08;
  }

  100% {
    opacity: .19;
  }
}

.zBD222-slotsnew__lights {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 670px;
  height: 260px;
  background: radial-gradient(ellipse at 55% 50%, #f855ee2a 0%, transparent 80%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.zBD222-slotsnew__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.zBD222-slotsnew__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  width: 100%;
}

.zBD222-slotsnew__left {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-slotsnew__visual {
  position: relative;
  margin: 0 auto;
}

.zBD222-slotsnew__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 38px #ffe57331, 0 0 0 2px #f855ee2b;
  position: relative;
  z-index: 2;
  animation: 99RR-imgin-newslots 1.15s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes z99RR-imgin-newslots {
  from {
    opacity: 0;
    transform: scale(.85);
  }
}

.zBD222-slotsnew__pulse {
  position: absolute;
  top: 54%;
  left: 51%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee09 75%, transparent 100%);
  opacity: .21;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: 99RR-pulse-newslots 2.7s infinite alternate;
}

@keyframes z99RR-pulse-newslots {
  0% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(.95);
  }

  100% {
    opacity: .29;
    transform: translate(-50%, -50%) scale(1.10);
  }
}

.zBD222-slotsnew__badge {
  position: absolute;
  left: -24px;
  top: 10px;
  background: linear-gradient(90deg, #ffe573 30%, #f855ee 100%);
  color: #320d45;
  font-size: 1.05rem;
  font-weight: 700;
  padding: .5em 1.1em .5em .8em;
  border-radius: 16px;
  box-shadow: 0 4px 12px #ffe57350;
  display: flex;
  align-items: center;
  gap: .5em;
  z-index: 3;
  animation: 99RR-badgein 1.5s cubic-bezier(.34, 1.22, .29, 1.05) both;
}

@keyframes z99RR-badgein {
  from {
    opacity: 0;
    transform: translateY(-34px) scale(.85);
  }
}

.zBD222-slotsnew__jackpot-anim {
  position: absolute;
  right: -22px;
  bottom: 16px;
  background: #f855ee;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: .49em 1em .49em .8em;
  border-radius: 16px;
  box-shadow: 0 4px 12px #f855ee46;
  display: flex;
  align-items: center;
  gap: .49em;
  z-index: 3;
  animation: 99RR-jackin 2s cubic-bezier(.39, 1.35, .22, 1.01) both infinite alternate;
}

@keyframes z99RR-jackin {
  from {
    opacity: 0.68;
    transform: scale(.89);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.zBD222-slotsnew__right {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zBD222-slotsnew__header {
  margin-bottom: .9rem;
}

.zBD222-slotsnew__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.zBD222-slotsnew__descbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.zBD222-slotsnew__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.zBD222-slotsnew__highlight {
  color: #ffe573;
  font-weight: 700;
  background: rgba(255, 229, 115, 0.11);
  padding: 0 .3em;
  border-radius: 6px;
}

.zBD222-slotsnew__divider {
  width: 36px;
  height: 4px;
  margin: .6em auto;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  border-radius: 4px;
  opacity: .7;
}


.zBD222-slotsnew__cta {
  margin-top: 2.1rem;
}

.zBD222-slotsnew__btn {
  display: inline-block;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-slotsnew__btn:hover,
.zBD222-slotsnew__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-slotsnew__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-slotsnew__btn:hover::after {
  animation: 99RR-btnsheen-slotsnew .6s forwards;
}

@keyframes z99RR-btnsheen-slotsnew {
  to {
    left: 130%;
  }
}

@media (max-width: 1050px) {
  .zBD222-slotsnew__inner {
    flex-direction: column;
    gap: 3.2rem;
  }

  .zBD222-slotsnew__left {
    justify-content: center;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 600px) {



  .zBD222-slotsnew__img {
    border-radius: 12px;
  }

  .zBD222-categories__grid {
    grid-template-columns: 1fr;
  }

  .zBD222-slotsnew__left {
    flex: 0 0 110px;
  }
}

.zBD222-gameshero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.zBD222-gameshero__bg {
  position: absolute;
  inset: 0;

  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.zBD222-gameshero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(1.5px);
  position: absolute;
  inset: 0;
}

.zBD222-gameshero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  z-index: 2;
}

.zBD222-gameshero__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  pointer-events: none;
  z-index: 3;
  filter: blur(38px);
  animation: gameshero-sparkmove 14s ease-in-out infinite alternate;
}

.zBD222-gameshero__spark--1 {
  width: 370px;
  height: 250px;
  left: -100px;
  top: 100px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-gameshero__spark--2 {
  width: 230px;
  height: 190px;
  right: -80px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes gameshero-sparkmove {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.24;
  }
}

.zBD222-gameshero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.zBD222-gameshero__content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  z-index: 10;
}

.tt {
  padding-left: 10px;
    border-left: 2px solid grey;
    display: inline-block;
    text-align: center;
        background: #5d5d5d;
    padding: 4px;
}

.zBD222-gameshero__header {
  margin-bottom: 1.6rem;
}

.zBD222-gameshero__title {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.8em 0;
  letter-spacing: -.01em;
}

.zBD222-gameshero__desc {
  font-size: 1.09rem;
  margin: 0 auto;
}
.zBD222-gameshero__figure {
  margin: 0 auto 1rem auto;
  width: 180px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-gameshero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 44px #ffe5732e, 0 0 0 3px #f855ee3a;
}

.zBD222-gameshero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.zBD222-gameshero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57329;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.zBD222-gameshero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #3a0155;
}

.zBD222-gameshero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}


.zBD222-gameshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .17), transparent);
  transform: skewX(-25deg);
}

.zBD222-gameshero__btn:hover::after {
  animation: gameshero-btnsheen .7s forwards;
}

@keyframes gameshero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .zBD222-gameshero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .zBD222-gameshero__figure {
    width: 240px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .zBD222-gameshero__figure {
    width: 120px;
  }
}

.zBD222-experience {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;

  overflow: hidden;
}

.zBD222-experience__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-experience__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.13;
  animation: 99RR-expshape 13s linear infinite alternate;
}

.zBD222-experience__shape--1 {
  width: 200px;
  height: 120px;
  left: -50px;
  top: 22%;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-experience__shape--2 {
  width: 160px;
  height: 90px;
  right: -38px;
  bottom: 8%;
  background: radial-gradient(circle, #f855ee 0%, transparent 100%);
  animation-delay: 5s;
}

@keyframes z99RR-expshape {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.21;
  }
}

.zBD222-experience__stars {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 68vw;
  max-width: 900px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #ffe573 0 1px, transparent 1px 20px);
  opacity: 0.09;
  animation: 99RR-stars 7s linear infinite alternate;
}

@keyframes z99RR-stars {
  0% {
    opacity: .06;
    left: 6%;
  }

  100% {
    opacity: .15;
    left: 10%;
  }
}

.zBD222-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.zBD222-experience__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.3rem;
  width: 100%;
}

.zBD222-experience__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-experience__imgbox {
  position: relative;

}

.zBD222-experience__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 38px #ffe57328, 0 0 0 2px #f855ee2a;
  position: relative;
  z-index: 2;
  animation: 99RR-imgin-exp 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes z99RR-imgin-exp {
  from {
    opacity: 0;
    transform: scale(.89);
  }
}

.zBD222-experience__glow {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee19 75%, transparent 100%);
  opacity: .23;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: 99RR-glow-exp 2.7s infinite alternate;
}

@keyframes z99RR-glow-exp {
  0% {
    opacity: .17;
    transform: translate(-50%, -50%) scale(.96);
  }

  100% {
    opacity: .28;
    transform: translate(-50%, -50%) scale(1.13);
  }
}

.zBD222-experience__badge {
  position: absolute;
  left: -18px;
  top: 9px;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #320d45;
  font-size: 1.01rem;
  font-weight: 700;
  padding: .5em 1.05em .5em .8em;
  border-radius: 14px;
  box-shadow: 0 3px 12px #ffe57338;
  display: flex;
  align-items: center;
  gap: .5em;
  z-index: 3;
  animation: 99RR-badgein-exp 1.3s cubic-bezier(.34, 1.22, .29, 1.05) both;
}

@keyframes z99RR-badgein-exp {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(.91);
  }
}

.zBD222-experience__content {
  max-width: 520px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zBD222-experience__header {
  margin-bottom: .9rem;
}

.zBD222-experience__title {
  font-size: clamp(2.1rem, 4vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.hr-cont {
  text-align: center;
}

.zBD222-experience__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.zBD222-experience__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}


.zBD222-experience__cta {
  margin-top: 1.8rem;
}

.zBD222-experience__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-experience__btn:hover,
.zBD222-experience__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-experience__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-experience__btn:hover::after {
  animation: 99RR-btnsheen-exp .6s forwards;
}

@keyframes z99RR-btnsheen-exp {
  to {
    left: 130%;
  }
}

@media (max-width: 950px) {
  .zBD222-experience__inner {
    flex-direction: column;
    gap: 0;
  }

  .zBD222-experience__visual {
    justify-content: center;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 650px) {



  .zBD222-experience__visual {
    flex: 0 0 100px;
  }
}

.zBD222-gamestyle {
 background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: white;
  
  text-align: center;

  overflow: hidden;
}

.zBD222-gamestyle__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-gamestyle__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .13;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(24px);
  animation: 99RR-burststyle 12s linear infinite alternate;
}

.zBD222-gamestyle__burst--1 {
  width: 160px;
  height: 130px;
  left: -45px;
  top: 20%;
  animation-delay: 0s;
}

.zBD222-gamestyle__burst--2 {
  width: 140px;
  height: 110px;
  right: -40px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes z99RR-burststyle {
  0% {
    opacity: 0.08;
  }

  100% {
    opacity: 0.21;
  }
}

.zBD222-gamestyle__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-gamestyle__header {
  margin-bottom: 1.2rem;
}

.zBD222-gamestyle__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}

.zBD222-gamestyle__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.1rem;
  margin: 0 auto 2.6rem auto;
  justify-items: center;
}

.zBD222-gamestyle__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57329;
  padding: 2.1rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;

  animation: 99RR-gamestyle-cardin 1.05s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .22s, transform .16s;
}

.zBD222-gamestyle__card:hover {
  box-shadow: 0 15px 44px #ffe573b8, 0 0 0 2px #ffe573e1;
  transform: translateY(-12px) scale(1.07);
}

@keyframes z99RR-gamestyle-cardin {
  from {
    transform: translateY(36px) scale(.93);
    opacity: 0;
  }
}

.zBD222-gamestyle__imgwrap {

  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 18px #ffe57350;
  background: #1c1031;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-gamestyle__img {
  object-fit: contain;
  display: block;
}

.zBD222-gamestyle__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.zBD222-gamestyle__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.zBD222-gamestyle__card-text {
  font-size: 1.01rem;

  margin: 0 auto;
  text-align: center;
}

.zBD222-gamestyle__cta {
  margin-top: .7rem;
}

.zBD222-gamestyle__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .17s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-gamestyle__btn:hover,
.zBD222-gamestyle__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-gamestyle__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-gamestyle__btn:hover::after {
  animation: 99RR-btnsheen-gamestyle .6s forwards;
}

@keyframes z99RR-btnsheen-gamestyle {
  to {
    left: 130%;
  }
}

.zBD222-hotnow {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-hotnow__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-hotnow__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(25px);
  animation: 99RR-hotnow-burst 14s linear infinite alternate;
}

.zBD222-hotnow__burst--1 {
  width: 160px;
  height: 130px;
  left: -45px;
  top: 21%;
  animation-delay: 0s;
}

.zBD222-hotnow__burst--2 {
  width: 130px;
  height: 100px;
  right: -35px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes z99RR-hotnow-burst {
  0% {
    opacity: 0.09;
  }

  100% {
    opacity: 0.18;
  }
}

.zBD222-hotnow__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.zBD222-hotnow__header {
  margin-bottom: 1.3rem;
}

.zBD222-hotnow__title {
  font-size: clamp(2rem, 4vw, 2.3rem);
  font-weight: 800;
  margin: 0;
}

.zBD222-hotnow__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto 1rem auto;
  justify-items: center;
}

@media (min-width: 900px) {
  .zBD222-hotnow__grid {
    
    gap: 2.4rem;
  }
}

.zBD222-hotnow__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57326;
  padding: 2.2rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;

  width: 100%;
  animation: 99RR-hotnow-cardin 1.07s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .22s, transform .17s;
}

.zBD222-hotnow__card:hover {
  box-shadow: 0 16px 44px #ffe573b8, 0 0 0 2px #ffe573e1;
  transform: translateY(-14px) scale(1.07);
}

@keyframes z99RR-hotnow-cardin {
  from {
    transform: translateY(36px) scale(.91);
    opacity: 0;
  }
}

.zBD222-hotnow__iconwrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 18px #ffe57334;
  font-size: 2.15rem;
}

.zBD222-hotnow__icon {
  width: 100%;
  height: 100%;
  background: #74ffe523;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-hotnow__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.zBD222-hotnow__card-tag {
  font-weight: 700;
  font-size: 1.09rem;
  
  margin: 0 auto .3em auto;
}

.zBD222-hotnow__card-text {
  font-size: 1.03rem;

  margin: 0 auto;
  text-align: center;
}


.zBD222-hotnow__figure {
  margin: 0 auto 1.7rem auto;
}

.zBD222-hotnow__img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 5px 28px #ffe5732e, 0 0 0 3px #f855ee29;
}

.zBD222-hotnow__cta {
  margin-top: .8rem;
}

.zBD222-hotnow__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .17s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-hotnow__btn:hover,
.zBD222-hotnow__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-hotnow__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-hotnow__btn:hover::after {
  animation: 99RR-btnsheen-hotnow .6s forwards;
}

@keyframes z99RR-btnsheen-hotnow {
  to {
    left: 130%;
  }
}

.zBD222-bet-hero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.zBD222-bet-hero__bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
  z-index: 1;
}

.zBD222-bet-hero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) blur(1.5px);
  position: absolute;
  inset: 0;
}

.zBD222-bet-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  z-index: 2;
}

.zBD222-bet-hero__flare {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
  z-index: 3;
  filter: blur(36px);
  animation: bethero-flare 14s ease-in-out infinite alternate;
}

.zBD222-bet-hero__flare--left {
  width: 320px;
  height: 200px;
  left: -100px;
  top: 70px;
  background: radial-gradient(circle at 55% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-bet-hero__flare--right {
  width: 210px;
  height: 170px;
  right: -80px;
  bottom: 0;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 5s;
}

@keyframes bethero-flare {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.22;
  }
}

.zBD222-bet-hero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin:  0 auto;

  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 3rem 0 ;
  justify-content: center;
}

.zBD222-bet-hero__content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2.7rem 1.2rem 2.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 10;
}

.zBD222-bet-hero__header {
  margin-bottom: 1.4rem;
}

.zBD222-bet-hero__title {
  font-size: clamp(2.1rem, 5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.5em 0;
  letter-spacing: -.01em;
}

.zBD222-bet-hero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.zBD222-bet-hero__figure {
  margin: 0 auto 1.1rem auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-bet-hero__img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 7px 44px #ffe57326, 0 0 0 2px #f855ee2e;
}

.zBD222-bet-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: .8rem;
  width: 100%;
}

.zBD222-bet-hero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffe57321;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.zBD222-bet-hero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
}

.zBD222-bet-hero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.zBD222-bet-hero__btn--main:hover,
.zBD222-bet-hero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

.zBD222-bet-hero__btn--ghost:hover,
.zBD222-bet-hero__btn--ghost:focus {
  background: #ffe573;
  color: #f1daff;
  border-color: #f855ee;
}

.zBD222-bet-hero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: skewX(-25deg);
}

.zBD222-bet-hero__btn:hover::after {
  animation: bethero-btnsheen .7s forwards;
}

@keyframes bethero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .zBD222-bet-hero__ctas {
    flex-direction: row;
    justify-content: center;
    
  }

  .zBD222-bet-hero__figure {
    width: 230px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .zBD222-bet-hero__figure {
    width: 110px;
  }
}

.zBD222-sportsbet {
  background: linear-gradient(120deg, #000000 0%, #000000 100%);
  color: white;
  position: relative;
  padding: 3rem 0 3rem 0;

  overflow: hidden;
}

.zBD222-sportsbet__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-sportsbet__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.17;
  animation: 99RR-betflare 13s linear infinite alternate;
}

.zBD222-sportsbet__flare--left {
  width: 160px;
  height: 120px;
  left: -35px;
  top: 22%;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.zBD222-sportsbet__flare--right {
  width: 120px;
  height: 80px;
  right: -33px;
  bottom: 8%;
  background: radial-gradient(circle, #f855ee 0%, transparent 100%);
  animation-delay: 6s;
}

@keyframes z99RR-betflare {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.20;
  }
}

.zBD222-sportsbet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.zBD222-sportsbet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
}

.zBD222-sportsbet__visual {

  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-sportsbet__imgbox {
  position: relative;

}

.zBD222-sportsbet__img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 38px #ffe57325, 0 0 0 2px #f855ee29;
  position: relative;
  z-index: 2;
  animation: 99RR-imgin-sportsbet 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes z99RR-imgin-sportsbet {
  from {
    opacity: 0;
    transform: scale(.91);
  }
}

.zBD222-sportsbet__pulse {
  position: absolute;
  top: 54%;
  left: 51%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee13 70%, transparent 100%);
  opacity: .20;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: 99RR-betpulse 2.2s infinite alternate;
}

@keyframes z99RR-betpulse {
  0% {
    opacity: .14;
    transform: translate(-50%, -50%) scale(.92);
  }

  100% {
    opacity: .23;
    transform: translate(-50%, -50%) scale(1.09);
  }
}

.zBD222-sportsbet__content {

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zBD222-sportsbet__header {
  margin-bottom: .8rem;
}

.zBD222-sportsbet__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 1.08em 0;
}

.zBD222-sportsbet__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  align-items: center;
}

.zBD222-sportsbet__desc {
  font-size: 1.08rem;

  margin: 0 auto;
}

.zBD222-sportsbet__cta {
  margin-top: 1.7rem;
}

.zBD222-sportsbet__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731a;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-sportsbet__btn:hover,
.zBD222-sportsbet__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-sportsbet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-sportsbet__btn:hover::after {
  animation: 99RR-btnsheen-sportsbet .6s forwards;
}

@keyframes z99RR-btnsheen-sportsbet {
  to {
    left: 130%;
  }
}

@media (max-width: 950px) {
  .zBD222-sportsbet__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .zBD222-sportsbet__visual {
    justify-content: center;
    margin-bottom: 1.7rem;
  }
}

@media (max-width: 650px) {


  .zBD222-sportsbet__visual {
    flex: 0 0 95px;
  }
}

.zBD222-hotnow__card-tag span {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
}

.zBD222-sports-cards {
  background: linear-gradient(120deg, #000000 0%, #000000 100%);
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-sports-cards__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-sports-cards__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: 99RR-sports-cards-burst 14s linear infinite alternate;
}

.zBD222-sports-cards__burst--1 {
  width: 140px;
  height: 110px;
  left: -40px;
  top: 21%;
  animation-delay: 0s;
}

.zBD222-sports-cards__burst--2 {
  width: 110px;
  height: 80px;
  right: -33px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes z99RR-sports-cards-burst {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.22;
  }
}

.zBD222-sports-cards__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.zBD222-sports-cards__header {
  margin-bottom: 1.4rem;
}

.zBD222-sports-cards__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.05em 0;
}

.zBD222-sports-cards__desc {
  font-size: 1.12rem;
  
  margin: 0 auto 1.1rem auto;
}

.zBD222-sports-cards__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
  margin: 0 auto 2.6rem auto;
  justify-items: center;
}

@media (min-width: 820px) {
  .zBD222-sports-cards__grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: auto;
    gap: 1.2rem;
    width: 100%;
  }
}

@media (min-width: 1100px) {
  .zBD222-sports-cards__grid {
display: flex
;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.2rem;
        justify-content: space-evenly;
  }
}

.zBD222-sports-cards__card {
background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    flex-grow: 1;
    box-shadow: 0 7px 38px #ffe57322;
    padding: 2rem 1.1rem 1.4rem 1.1rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    width: clamp(220px, 25% - 20px, 300px);
    animation: 99RR-sports-cards-in 1.07s cubic-bezier(.5, 1.5, .41, 1) both;
    transition: box-shadow .23s, transform .18s;
}

.zBD222-sports-cards__card:hover {
  box-shadow: 0 15px 44px #ffe573c8, 0 0 0 2px #ffe573f1;
  transform: translateY(-13px) scale(1.07);
}

@keyframes z99RR-sports-cards-in {
  from {
    transform: translateY(32px) scale(.93);
    opacity: 0;
  }
}

.zBD222-sports-cards__imgwrap {


  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 18px #ffe57331;
  background: #190c31;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zBD222-sports-cards__img {
  object-fit: contain;
  display: block;
}

.zBD222-sports-cards__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .57rem;
}

.zBD222-sports-cards__card-tag {
  font-weight: 700;
  font-size: 1.09rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
}

.zBD222-sports-cards__card-text {
  font-size: 1.03rem;

  margin: 0 auto;
  text-align: center;
}

.zBD222-sports-cards__figure {
  margin: 0 auto 1.6rem auto;
}

.zBD222-sports-cards__figureimg {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 5px 28px #ffe57322, 0 0 0 2px #f855ee29;
}

.zBD222-sports-cards__cta {
  margin-top: .8rem;
}

.zBD222-sports-cards__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .21s, color .21s, box-shadow .18s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-sports-cards__btn:hover,
.zBD222-sports-cards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-sports-cards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .21), transparent);
  transform: skewX(-25deg);
}

.zBD222-sports-cards__btn:hover::after {
  animation: 99RR-btnsheen-sports-cards .6s forwards;
}

@keyframes z99RR-btnsheen-sports-cards {
  to {
    left: 130%;
  }
}

.zBD222-livebet {
  background: linear-gradient(120deg, #000000 0%, #000000 100%);
  position: relative;
  padding: 5rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-livebet__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zBD222-livebet__flare {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: 99RR-livebet-flare 13s linear infinite alternate;
}

.zBD222-livebet__flare--1 {
  width: 140px;
  height: 110px;
  left: -40px;
  top: 17%;
  animation-delay: 0s;
}

.zBD222-livebet__flare--2 {
  width: 110px;
  height: 80px;
  right: -28px;
  bottom: 9%;
  animation-delay: 7s;
}

@keyframes z99RR-livebet-flare {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.19;
  }
}

.zBD222-logincards__header {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.285);
  border-radius: 2rem;
}

.zBD222-livebet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.1rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.zBD222-livebet__imgwrap {
  position: relative;

  margin: 0 auto 1.3rem auto;
}

.zBD222-livebet__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 38px #ffe57322, 0 0 0 2px #f855ee29;
  position: relative;
  z-index: 2;
  animation: 99RR-livebet-imgin 1.15s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes z99RR-livebet-imgin {
  from {
    opacity: 0;
    transform: scale(.91);
  }
}

.zBD222-livebet__pulse {
  position: absolute;
  top: 56%;
  left: 54%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee19 72%, transparent 100%);
  opacity: .17;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: 99RR-livebet-pulse 2.4s infinite alternate;
}

@keyframes z99RR-livebet-pulse {
  0% {
    opacity: .14;
    transform: translate(-50%, -50%) scale(.93);
  }

  100% {
    opacity: .23;
    transform: translate(-50%, -50%) scale(1.11);
  }
}

.zBD222-livebet__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-livebet__header {
  margin-bottom: 1.15rem;
}

.zBD222-livebet__title {
  font-size: 2.5em;
  font-weight: 800;
  margin: 0;

  display: flex;
  justify-content: center;
}

.zBD222-livebet__card-tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, 0.11);
  border-radius: 6px;
  font-size: 2.5rem;
  text-align: center;

  margin: 0 auto;
}

.zBD222-livebet__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  align-items: center;
}

.zBD222-livebet__desc {
  font-size: 1.06rem;

  margin: 0 auto;
}


.zBD222-livebet__cta {
  margin-top: 1.8rem;
}

.zBD222-livebet__btn {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .18s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.zBD222-livebet__btn:hover,
.zBD222-livebet__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-livebet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-livebet__btn:hover::after {
  animation: 99RR-btnsheen-livebet .6s forwards;
}

@keyframes z99RR-btnsheen-livebet {
  to {
    left: 130%;
  }
}

.zBD222-loginhero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
}

/* ----- Background layers ----- */
.zBD222-loginhero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.zBD222-loginhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px);
}

.zBD222-loginhero__overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, #6e3300 0%, #000000 100%);
}

.zBD222-loginhero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  animation: loginhero-flare 14s ease-in-out infinite alternate;
}

.zBD222-loginhero__flare--1 {
  width: 340px;
  height: 240px;
  left: -110px;
  top: 90px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%);
}

.zBD222-loginhero__flare--2 {
  width: 230px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes loginhero-flare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* ----- Container ----- */
.zBD222-loginhero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin:  0 auto;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 3rem 0 ;
  display: grid;
  align-items: center;
  justify-content: center;
}

.zBD222-loginhero__content {
  max-width: 1120px;
  width: 100%;
  padding: 2.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- Text ----- */
.zBD222-loginhero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 20px 0;
}

.zBD222-loginhero__desc {
  font-size: 1.08rem;
  margin: 0 auto
}


/* ----- Image ----- */
.zBD222-loginhero__figure {
  margin: 0;
  width: 190px;
  max-width: 55vw
}

.zBD222-loginhero__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 7px 44px #ffe5732c, 0 0 0 3px #f855ee30;
}

/* ----- Buttons ----- */
.zBD222-loginhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  width: 100%;
}

.zBD222-loginhero__btn {
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .24s, color .24s, box-shadow .21s;
  position: relative;
  overflow: hidden;
}

.zBD222-loginhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.zBD222-loginhero__btn:hover::after {
  animation: loginhero-btnsheen .7s forwards
}

@keyframes loginhero-btnsheen {
  to {
    left: 130%
  }
}

/* main */
.zBD222-loginhero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 3px 20px #ffe5732a;
}

.zBD222-loginhero__btn--main:hover {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

/* ghost */
.zBD222-loginhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.zBD222-loginhero__btn--ghost:hover {
  background: #ffe573;
  
  border-color: #f855ee;
}

/* ----- Responsive tweaks ----- */
@media(min-width:700px) {
  .zBD222-loginhero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1.3rem
  }

  .zBD222-loginhero__figure {
    width: 240px
  }
}

@media(max-width:700px) {
  .zBD222-loginhero__figure {
    width: 120px
  }
}

.zBD222-logincards {
  background: #000000;
  position: relative;
  padding: 3rem 0 3rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.zBD222-logincards__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.zBD222-logincards__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  filter: blur(26px);
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation: logincards-burst 12s linear infinite alternate;
}

.zBD222-logincards__burst--1 {
  width: 150px;
  height: 110px;
  left: -45px;
  top: 18%
}

.zBD222-logincards__burst--2 {
  width: 120px;
  height: 90px;
  right: -38px;
  bottom: 10%;
  animation-delay: 6s
}

@keyframes logincards-burst {
  0% {
    opacity: .10
  }

  100% {
    opacity: .22
  }
}

/* ===== Container ===== */
.zBD222-logincards__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

/* ===== Top Image ===== */
.zBD222-logincards__figure {
  margin: 0;
}

.zBD222-logincards__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57328, 0 0 0 2px #f855ee26;
}

/* ===== Heading & Intro ===== */
.zBD222-logincards__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
}

.zBD222-logincards__intro {
  font-size: 1.07rem;
  
}

/* ===== Card Grid ===== */
.zBD222-logincards__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

@media(min-width:750px) {
  .zBD222-logincards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem
  }
}

/* ===== Individual Card ===== */
.zBD222-logincards__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  width: 100%;
  padding: 2rem 1.2rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 7px 36px #ffe5731e;
  transition: transform .25s, box-shadow .25s;
  animation: logincards-cardin 1s cubic-bezier(.5, 1.5, .4, 1) both;
}

.zBD222-logincards__card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 46px #ffe573c5, 0 0 0 2px #ffe573e1;
}

@keyframes logincards-cardin {
  from {
    transform: translateY(34px) scale(.93);
    opacity: 0
  }
}

.zBD222-logincards__iconwrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffe5731b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px #ffe5733b;
  margin-bottom: 1rem;
  color: #ffe573;
}

/* ===== Card Text ===== */
.zBD222-logincards__text {
  font-size: 1.03rem;
  text-align: center;
  margin: 0 auto;
}

.zBD222-logincards__tag {
  justify-content: center;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, .12);
  border-radius: 6px;
  font-size: 1.09rem;
}


/* ===== CTA Button ===== */
.zBD222-logincards__cta {
  margin-top: .6rem
}

.zBD222-logincards__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  box-shadow: 0 3px 22px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .22s, color .22s;
}

.zBD222-logincards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-logincards__btn:hover,
.zBD222-logincards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.zBD222-logincards__btn:hover::after {
  animation: logincards-btnsheen .6s forwards
}

@keyframes logincards-btnsheen {
  to {
    left: 130%
  }
}

.zBD222-awaits {
  position: relative;
  padding: 5rem 0 5rem 0;
  border: none;
  background-color: #000000;
color: white;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* neon grid BG */
.zBD222-awaits__gridmask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, .05) 100%),
    linear-gradient(transparent 96%, rgba(255, 255, 255, .05) 100%);
  background-size: 40px 40px;
  opacity: .06;
  animation: gridshift 20s linear infinite;
  pointer-events: none
}

@keyframes gridshift {
  to {
    background-position: 40px 40px
  }
}

/* sparks */
.zBD222-awaits__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe573;
  opacity: .85;
  filter: drop-shadow(0 0 6px #ffe573);
  animation: shoot 6s linear infinite
}

.zBD222-awaits__spark--1 {
  top: -5%;
  left: 20%
}

.zBD222-awaits__spark--2 {
  top: -5%;
  left: 70%;
  animation-delay: 3s
}

@keyframes shoot {
  0% {
    transform: translateY(0) translateX(0) scale(.8);
    opacity: .8
  }

  100% {
    transform: translateY(110vh) translateX(30vw) scale(.2);
    opacity: 0
  }
}

/* ===== HOLOGRAM CARD ===== */
.zBD222-awaits__card {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 3.2rem 1.8rem;
  box-shadow: 0 10px 50px #00000070;
  display: grid;
  gap: 2.4rem;
}

/* hologram box */
.zBD222-awaits__holo {
  perspective: 900px;
  width: 100%;
  display: flex;
  justify-content: center
}

.zBD222-awaits__fig {
  margin: 0;
  transform-style: preserve-3d;
  animation: holoTilt 8s ease-in-out infinite alternate
}

@keyframes holoTilt {
  0% {
    transform: rotateY(-6deg) rotateX(5deg)
  }

  100% {
    transform: rotateY(6deg) rotateX(-5deg)
  }
}

.zBD222-awaits__img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 8px 40px #ffe57333, 0 0 0 3px #f855ee33
}

/* body */
.zBD222-awaits__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-awaits__title {
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

.zBD222-awaits__copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.zBD222-awaits__text {
  font-size: 1.07rem;
  margin: 0
}


/* button */
.zBD222-awaits__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21082d;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: none;
  border-radius: 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #ffe57329;
  transition: background .24s, color .24s
}

.zBD222-awaits__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.zBD222-awaits__btn:hover,
.zBD222-awaits__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-awaits__btn:hover::after {
  animation: btn-sheen .7s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* ===== Responsive ===== */
@media(min-width:768px) {
  .zBD222-awaits__card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3rem 3rem
  }

}


.zBD222-recovery {
  background: #000000;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === animated BG === */
.zBD222-recovery__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.zBD222-recovery__glare {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: .14;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: recovery-glare 14s linear infinite alternate
}

.zBD222-recovery__glare--1 {
  width: 180px;
  height: 140px;
  left: -60px;
  top: 22%
}

.zBD222-recovery__glare--2 {
  width: 140px;
  height: 110px;
  right: -45px;
  bottom: 12%;
  animation-delay: 6s
}

@keyframes recovery-glare {
  0% {
    opacity: .1
  }

  100% {
    opacity: .22
  }
}

/* === layout === */
.zBD222-recovery__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* illustration */
.zBD222-recovery__figure {
  margin: 0;
}

.zBD222-recovery__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 40px #ffe57325, 0 0 0 2px #f855ee29;
  animation: recovery-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes recovery-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* title */
.zBD222-recovery__title {
  font-size: clamp(2.1rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

/* grid */
.zBD222-recovery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  justify-items: center;
  margin-bottom: 20px;
}

@media(min-width:800px) {
  .zBD222-recovery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem
  }
}

/* card */
.zBD222-recovery__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  padding: 2rem 1.2rem 1.6rem;
  width: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 7px 36px #ffe573;
  transition: transform .24s, box-shadow .24s;
  animation: recovery-cardin 1.05s cubic-bezier(.5, 1.5, .4, 1) both
}

.zBD222-recovery__card:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 15px 46px #ffe573c4, 0 0 0 2px #ffe573e0
}

@keyframes recovery-cardin {
  from {
    transform: translateY(36px) scale(.92);
    opacity: 0
  }
}

/* icon */
.zBD222-recovery__iconwrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #ffe5731a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffe573;
  box-shadow: 0 4px 20px #ffe57335
}

.zBD222-quote {
  display: flex;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid #fff;
  font-weight: bold;
}

/* tag + text */
.zBD222-recovery__text {
  
  align-items: center;
  gap: .55rem;
  font-size: 1.04rem;
  
  margin: 0 auto
}

.zBD222-recovery__tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, .12);
  border-radius: 6px;
  font-size: 1.09rem
}


/* CTA */
.zBD222-recovery__btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-recovery__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-recovery__btn:hover,
.zBD222-recovery__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-recovery__btn:hover::after {
  animation: recovery-sheen .6s forwards
}

@keyframes recovery-sheen {
  to {
    left: 130%
  }
}

.zBD222-apphero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

/* === background layers === */
.zBD222-apphero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.zBD222-apphero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.zBD222-apphero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
}

/* glowing orbs */
.zBD222-apphero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(38px);
  opacity: .14;
  animation: apphero-glow 15s ease-in-out infinite alternate
}

.zBD222-apphero__glow--1 {
  width: 330px;
  height: 240px;
  left: -110px;
  top: 80px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.zBD222-apphero__glow--2 {
  width: 220px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 4s
}

@keyframes apphero-glow {
  0% {
    opacity: .12
  }

  100% {
    opacity: .25
  }
}

/* === container === */
.zBD222-apphero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding:  3rem 0 ;
}

.zBD222-apphero__content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === text === */
.zBD222-apphero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.5em
}

.zBD222-apphero__desc {
  font-size: 1.08rem;

  margin: 0 auto
}

/* === phone illustration === */
.zBD222-apphero__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.zBD222-apphero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 46px #ffe57330, 0 0 0 3px #f855ee30;
  animation: apphero-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes apphero-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* === buttons === */
.zBD222-apphero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.zBD222-apphero__btn {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s;
}

.zBD222-apphero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.zBD222-apphero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 4px 24px #ffe5732c
}

.zBD222-apphero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.zBD222-apphero__btn--main:hover,
.zBD222-apphero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035
}

.zBD222-apphero__btn--ghost:hover,
.zBD222-apphero__btn--ghost:focus {
  background: #ffe573;
  
  border-color: #f855ee
}

.zBD222-apphero__btn:hover::after {
  animation: apphero-sheen .7s forwards
}

@keyframes apphero-sheen {
  to {
    left: 130%
  }
}

/* === responsive tweaks === */
@media(min-width:768px) {
  .zBD222-apphero__ctas {
    flex-direction: row;
    justify-content: center;
    
  }

  .zBD222-apphero__figure {
    width: 250px
  }
}

@media(max-width:768px) {
  .zBD222-apphero__figure {
    width: 130px
  }

  .zBD222-apphero__container {
    display: flex;
    flex-direction: column;
  }
}

.zBD222-appcards {
  background: #000000;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === Animated BG Halos === */
.zBD222-appcards__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.zBD222-appcards__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 75%);
  animation: appcards-halo 14s linear infinite alternate
}

.zBD222-appcards__halo--1 {
  width: 170px;
  height: 130px;
  left: -50px;
  top: 22%
}

.zBD222-appcards__halo--2 {
  width: 140px;
  height: 110px;
  right: -40px;
  bottom: 12%;
  animation-delay: 6s
}

@keyframes appcards-halo {
  0% {
    opacity: .1
  }

  100% {
    opacity: .22
  }
}

/* === Layout Container === */
.zBD222-appcards__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Illustration */
.zBD222-appcards__figure {
  margin: 0;
}

.zBD222-appcards__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 40px #ffe57328, 0 0 0 2px #f855ee29;
  animation: appcards-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes appcards-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* Heading */
.zBD222-appcards__title {
  font-size: clamp(2.1rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

/* Grid */
.zBD222-appcards__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  justify-items: center;
  margin-bottom: 20px;
}

@media(min-width:880px) {
  .zBD222-appcards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem
  }
}

/* Card container */
.zBD222-welcome__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  margin: 0;
}

/* Individual card */
.zBD222-welcome__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zBD222-reload__text li,  .zBD222-vip__text li {
  text-align: left;
  margin-bottom: 10px;
}

/* Hover effect */
.zBD222-welcome__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Text inside card */
.zBD222-welcome__card p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Card */
.zBD222-appcards__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  padding: 2rem 1.2rem 1.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  box-shadow: 0 7px 36px #ffe573fc;
  transition: transform .24s, box-shadow .24s;
  animation: appcards-cardin 1.05s cubic-bezier(.5, 1.5, .4, 1) both
}

.zBD222-appcards__card:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 15px 46px #ffe573c5, 0 0 0 2px #ffe573e0
}

@keyframes appcards-cardin {
  from {
    transform: translateY(36px) scale(.92);
    opacity: 0
  }
}

/* Icon */
.zBD222-appcards__iconwrap {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: #ffe5731a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffe573;
  box-shadow: 0 4px 20px #ffe57335
}

/* Text */
.zBD222-appcards__text {
  font-size: 1.05rem;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: .45rem
}

/* CTA */
.zBD222-appcards__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-appcards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-appcards__btn:hover,
.zBD222-appcards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-appcards__btn:hover::after {
  animation: appcards-sheen .6s forwards
}

@keyframes appcards-sheen {
  to {
    left: 130%
  }
}

.zBD222-appfeatures {
  background: #000000;
  position: relative;
  padding: 5rem 0 5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* ===== Background beams ===== */
.zBD222-appfeatures__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.zBD222-appfeatures__beam {
  position: absolute;
  width: 140%;
  height: 4px;
  background: #ffe573;
  opacity: .08;
  transform: rotate(-8deg);
  left: -20%;
  animation: beam-move 18s linear infinite
}

.zBD222-appfeatures__beam--1 {
  top: 25%
}

.zBD222-appfeatures__beam--2 {
  top: 65%;
  animation-delay: 9s
}

@keyframes beam-move {
  0% {
    transform: translateX(0) rotate(-8deg)
  }

  100% {
    transform: translateX(-50%) rotate(-8deg)
  }
}

/* ===== Layout ===== */
.zBD222-appfeatures__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: center
}

@media(min-width:900px) {
  .zBD222-appfeatures__container {
    text-align: left
  }
}

/* ===== Columns ===== */
.zBD222-appfeatures__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem
}

@media(min-width:900px) {
  .zBD222-appfeatures__col--left {
    align-items: center;
    text-align: right
  }

  .zBD222-appfeatures__col--right {
    align-items: center;
    text-align: left
  }
}

/* ===== Heading ===== */
.zBD222-appfeatures__title {
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0
}

/* ===== Text & Links ===== */
.zBD222-appfeatures__text {
  font-size: 1.07rem;
  border-bottom: 1px solid white;
  padding: 10px;
  margin: 0;
  border-radius: 1rem;
}

/* ===== Illustration ===== */
.zBD222-appfeatures__figure {
  margin: 0;
  
}

.zBD222-appfeatures__img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 8px 44px #ffe57328, 0 0 0 2px #f855ee29;
  animation: phone-tilt 10s ease-in-out infinite alternate
}

@keyframes phone-tilt {
  0% {
    transform: rotateY(-7deg)
  }

  100% {
    transform: rotateY(7deg)
  }
}

/* ===== Button ===== */
.zBD222-appfeatures__cta {
  margin-top: .6rem
}

.zBD222-appfeatures__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-appfeatures__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-appfeatures__btn:hover,
.zBD222-appfeatures__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-appfeatures__btn:hover::after {
  animation: btn-sheen 0.6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* ===== Responsive tweaks ===== */
@media(max-width:500px) {
  .zBD222-appfeatures__figure {
    width: 130px
  }
}

.zBD222-install-split {
  position: relative;
  padding: 5rem 0 5rem 0;
background-color: black;
color: white;
}

.zBD222-install-split__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
 align-items: center;
gap: 20px;
}



/* ===== LEFT IMAGE ===== */
.zBD222-install-split__visual {
  position: relative;

  display: flex;
  justify-content: center
}

.zBD222-install-split__glow {
  position: absolute;

  border-radius: 50%;
  background: radial-gradient(circle, #f855ee 0%, #ffe57312 70%, transparent 80%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
  z-index: 0
}

@keyframes glow-pulse {
  from {
    transform: scale(.9)
  }

  to {
    transform: scale(1.05)
  }
}

.zBD222-install-split__figure {
  margin: 0;
  perspective: 900px;
  z-index: 1
}

.zBD222-install-split__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 46px #ffe57325, 0 0 0 3px #f855ee2e;
  animation: tilt 10s ease-in-out infinite alternate
}

@keyframes tilt {
  from {
    transform: rotateY(-10deg)
  }

  to {
    transform: rotateY(10deg)
  }
}

.zBD222-install-split__qr {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px #ffe57340;
  animation: qr-bob 2.6s ease-in-out infinite
}

@keyframes qr-bob {
  0% {
    transform: translateY(-5px)
  }

  100% {
    transform: translateY(5px)
  }
}

.zBD222-install-split__qrimg {
  width: 74%;
  height: 74%;
  object-fit: contain
}

/* ===== RIGHT CONTENT ===== */
.zBD222-install-split__content {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem
}

@media(min-width:950px) {
  .zBD222-install-split__content {
    align-items: center
  }
}

.zBD222-install-split__title {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-align: center
}

@media(min-width:950px) {
  .zBD222-install-split__title {
    text-align: center
  }
}

.zBD222-install-split__text {
  font-size: 1.07rem;
  margin: 0;
  text-align: center;
  max-width: 520px
}

@media(min-width:950px) {
  .zBD222-install-split__text {
    text-align: center
  }
}

/* ===== BUTTON ===== */
.zBD222-install-split__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-install-split__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-install-split__btn:hover,
.zBD222-install-split__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-install-split__btn:hover::after {
  animation: shine .6s forwards
}

@keyframes shine {
  to {
    left: 130%
  }
}

.zBD222-bonushero {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

/* === background layers === */
.zBD222-bonushero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.zBD222-bonushero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.zBD222-bonushero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%)
}

.zBD222-bonushero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  opacity: .14;
  animation: bonusflare 15s ease-in-out infinite alternate
}

.zBD222-bonushero__flare--1 {
  width: 320px;
  height: 220px;
  left: -90px;
  top: 90px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.zBD222-bonushero__flare--2 {
  width: 220px;
  height: 170px;
  right: -80px;
  bottom: -40px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 4s
}

@keyframes bonusflare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* === layout === */
.zBD222-bonushero__container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin:  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.2rem
}

.zBD222-bonushero__content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.7rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === text === */
.zBD222-bonushero__title {
  font-size: clamp(2.25rem, 5vw, 2.9rem);
  font-weight: 800;
  margin: 0;
  margin-bottom: 20px;
}

.zBD222-bonushero__desc {
  font-size: 1.09rem;
  margin: 0
}

/* === image === */
.zBD222-bonushero__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.zBD222-bonushero__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 8px 46px #ffe57330, 0 0 0 3px #f855ee30;
  animation: bonus-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes bonus-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* === buttons === */
.zBD222-bonushero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%
}

.zBD222-bonushero__btn {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s
}

.zBD222-bonushero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.zBD222-bonushero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 4px 24px #ffe5732c
}

.zBD222-bonushero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.zBD222-bonushero__btn--main:hover,
.zBD222-bonushero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035
}

.zBD222-bonushero__btn--ghost:hover,
.zBD222-bonushero__btn--ghost:focus {
  background: #ffe573;
  
}

.zBD222-bonushero__btn:hover::after {
  animation: bonussheen .7s forwards
}

@keyframes bonussheen {
  to {
    left: 130%
  }
}

/* === responsive buttons === */
@media(min-width:769px) {
  .zBD222-bonushero__ctas {
    flex-direction: row;
    justify-content: center;
    
  }

  .zBD222-bonushero__figure {
    width: 250px
  }
}

@media(max-width:720px) {
  .zBD222-bonushero__figure {
    width: 130px
  }
}

.zBD222-welcome {
  position: relative;
  padding: 5rem 0 5rem 0;
background-color: #000000;
color: white;
  text-align: center;
  overflow: hidden
}

/* ===== hex background canvas ===== */
.zBD222-welcome__hex {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .08
}

/* ===== confetti ===== */
.zBD222-welcome__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffe573;
  border-radius: 2px;
  animation: confetti-fall 10s linear infinite
}

.confetti--1 {
  left: 15%;
  animation-delay: 0s
}

.confetti--2 {
  left: 50%;
  animation-delay: 3s
}

.confetti--3 {
  left: 80%;
  animation-delay: 5s
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: .9
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0
  }
}

/* ===== glow rings ===== */
.zBD222-welcome__ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .14;
  pointer-events: none;
}

.zBD222-welcome__ring--a {
  width: 320px;
  height: 240px;
  left: -140px;
  top: 60px;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: ring-pulse 12s ease-in-out infinite
}

.zBD222-welcome__ring--b {
  width: 260px;
  height: 200px;
  right: -120px;
  bottom: -70px;
  background: radial-gradient(circle, #f855ee 0%, transparent 70%);
  animation: ring-pulse-alt 12s ease-in-out infinite
}

@keyframes ring-pulse {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.1)
  }
}

@keyframes ring-pulse-alt {
  0% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(.9)
  }
}

/* ===== 3-D cube container ===== */
.zBD222-welcome__cube {
  position: relative;
  z-index: 3;
  perspective: 1000px;
  width: 100%;
  display: flex;
  justify-content: center
}

.zBD222-welcome__cube-face {
  max-width: 1200px;
  

}

@keyframes cube-tilt {
  0% {
    transform: rotateY(-8deg) rotateX(6deg)
  }

  100% {
    transform: rotateY(8deg) rotateX(-6deg)
  }
}

/* ===== heading & body ===== */
.zBD222-welcome__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.2em
}

.zBD222-welcome__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem
}

.zBD222-welcome__text {
  font-size: 1.07rem;
  margin: 0;
  padding: 10px;
  border-radius: 2rem;
  box-shadow: 0 0 20px 2px;
}

/* ===== image ===== */
.zBD222-welcome__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.zBD222-welcome__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 8px 46px #ffe57333, 0 0 0 3px #f855ee33;
  animation: gift-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes gift-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* ===== button ===== */
.zBD222-welcome__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-welcome__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.zBD222-welcome__btn:hover,
.zBD222-welcome__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-welcome__btn:hover::after {
  animation: btn-glint .6s forwards
}

@keyframes btn-glint {
  to {
    left: 130%
  }
}

/* ===== responsive image size ===== */
@media(max-width:520px) {
  .zBD222-welcome__figure {
    width: 140px
  }
}

.zBD222-reload {
  background: linear-gradient(125deg, #000000 0%, #000000 100% 100%);
  position: relative;
  padding: 5rem 0 5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* ===== animated shimmer rings ===== */
.zBD222-reload__shimmer {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .14;
  pointer-events: none
}

.zBD222-reload__shimmer--1 {
  width: 320px;
  height: 240px;
  left: -140px;
  top: 100px;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: shimmer-a 13s ease-in-out infinite
}

.zBD222-reload__shimmer--2 {
  width: 260px;
  height: 190px;
  right: -130px;
  bottom: -60px;
  background: radial-gradient(circle, #f855ee 0%, transparent 70%);
  animation: shimmer-b 13s ease-in-out infinite
}

@keyframes shimmer-a {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.1)
  }
}

@keyframes shimmer-b {
  0% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(.9)
  }
}

/* ===== grid ===== */
.zBD222-reload__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.3rem;
  align-items: center;
  position: relative;
  z-index: 2
}

@media(min-width:920px) {
  .zBD222-reload__wrapper {
    flex-direction: row;
    gap: 5rem;
    text-align: center
  }
}

/* ===== left image ===== */
.zBD222-reload__visual {

  position: relative
}

.zBD222-reload__figure {
  margin: 0
}

.zBD222-reload__img {
  width: 100%;
  border-radius: 26px;
  display: block;
  box-shadow: 0 12px 46px #ffe57324, 0 0 0 3px #f855ee29;
  animation: pulseImg 8s ease-in-out infinite alternate
}

@keyframes pulseImg {
  0% {
    transform: scale(.96)
  }

  100% {
    transform: scale(1.04)
  }
}

/* ===== right content ===== */
.zBD222-reload__content {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem
}

@media(min-width:920px) {
  .zBD222-reload__content {
    align-items: center
  }
}

.zBD222-reload__title {
  font-size: clamp(2.15rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-align: center
}

@media(min-width:920px) {
  .zBD222-reload__title {
    text-align: center
  }
}

.zBD222-reload__text {
  font-size: 1.07rem;
  margin: 0;
  text-align: center
}

@media(min-width:920px) {
  .zBD222-reload__text {
    text-align: left
  }
}

/* ===== button ===== */
.zBD222-reload__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731c;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-reload__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-reload__btn:hover,
.zBD222-reload__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-reload__btn:hover::after {
  animation: btnSwipe .6s forwards
}

@keyframes btnSwipe {
  to {
    left: 130%
  }
}

.zBD222-vip {
  background: #000000;
  position: relative;
  padding: 5rem 0 5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === floating halo === */
.zBD222-vip__halo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1
}

.zBD222-vip__halo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed #ffe57338;
  transform: translate(-50%, -50%) rotateX(65deg);
  animation: vip-spin 22s linear infinite
}

.zBD222-vip__halo-ring--b {
  border-color: #f855ee38;
  width: 80%;
  height: 80%;
  animation-duration: 30s
}

@keyframes vip-spin {
  to {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg)
  }
}

/* === top image === */
.zBD222-vip__figure {
  margin: 0 auto 2.8rem auto;

  position: relative;
  z-index: 2
}

.zBD222-vip__img {
  width: 100%;
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 10px 46px #ffe57328, 0 0 0 3px #f855ee30;
  animation: vip-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes vip-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* === card === */
.zBD222-vip__card {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  box-shadow: 0 8px 40px #ffe5731a;
  padding: 3rem 1.8rem 3.2rem;
  backdrop-filter: blur(12px)
}

/* === text === */
.zBD222-vip__title {
  font-size: clamp(2.1rem, 4vw, 2.55rem);
  font-weight: 800;
  margin: 0 0 1.25em
}

.zBD222-vip__text {
  font-size: 1.08rem;
  margin: 0 auto;

}

.zBD222-vip__card ul {
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 2rem;
  box-shadow:  0 0 20px 2px white;
  margin-bottom: 20px;
}

/* === button === */
.zBD222-vip__btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731c;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-vip__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.zBD222-vip__btn:hover,
.zBD222-vip__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-vip__btn:hover::after {
  animation: vip-sheen .6s forwards
}

@keyframes vip-sheen {
  to {
    left: 130%
  }
}


.zBD222-bonustrans2 {
  background: radial-gradient(ellipse 140% 80% at 50% 0, #be8a00 0, #19061b 100%);
  position: relative;
  padding: 7.5rem 0 6.5rem;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

.zBD222-bonustrans2__lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Floating neon icons */
.zBD222-bonustrans2__icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: .14;
  z-index: 3;
  filter: blur(1.2px) drop-shadow(0 0 12px #ffe57399);
  animation: icon-float 9s ease-in-out infinite alternate;
}

.zBD222-bonustrans2__icon--help {
  left: 11vw;
  top: 16vh;
  color: #ffe573;
  animation-delay: 1s;
}

.zBD222-bonustrans2__icon--clock {
  right: 13vw;
  top: 22vh;
  color: #f855ee;
  animation-delay: 3.3s;
}

.zBD222-bonustrans2__icon--shield {
  left: 50vw;
  bottom: 7vh;
  color: #fff;
  animation-delay: 5.7s;
}

@keyframes icon-float {
  0% {
    transform: translateY(0) scale(1)
  }

  100% {
    transform: translateY(-22px) scale(1.11)
  }
}

/* Layout */
.zBD222-bonustrans2__wrapper {
  position: relative;
  z-index: 4;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.3rem
}

/* Clipboard + visual */
.zBD222-bonustrans2__visual {
  margin: 0 auto 1.6rem auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-bonustrans2__clip {
  width: 56px;
  height: 22px;
  background: linear-gradient(90deg, #ffe573, #f855ee 90%);
  border-radius: 14px 14px 16px 16px / 8px 8px 20px 20px;
  margin-bottom: -8px;
  box-shadow: 0 2px 10px #ffe57340;
}

.zBD222-bonustrans2__clipboard {
  background: rgba(255, 255, 255, .10);
  border-radius: 18px 18px 30px 30px;
  box-shadow: 0 8px 50px #ffe57318, 0 0 0 2px #ffe57322;
  padding: 1.8rem 1rem 1.2rem 1rem;
  position: relative;
  overflow: hidden;
  animation: clipboard-pop 1.05s cubic-bezier(.5, 1.5, .4, 1) both;
}

@keyframes clipboard-pop {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(.82)
  }
}

.zBD222-bonustrans2__img {
  object-fit: contain;
  margin-bottom: .8rem;
  z-index: 1;
  border-radius: 1rem;
  position: relative;
  filter: drop-shadow(0 4px 24px #ffe57318);
}

.zBD222-bonustrans2__glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 100px;
  height: 40px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .22;
  background: radial-gradient(ellipse 100% 40% at 50% 60%, #ffe573 0, #f855ee 80%, transparent 100%);
  animation: glow-shimmer 2.7s ease-in-out infinite alternate;
}

@keyframes glow-shimmer {
  0% {
    opacity: .22
  }

  100% {
    opacity: .32
  }
}

/* Text & Button */
.zBD222-bonustrans2__content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem
}

.zBD222-bonustrans2__title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zBD222-bonustrans2__text {
  font-size: 1.09rem;
  margin: 0 auto;
  background: rgba(34, 24, 51, .12);
  padding: .9rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 3px 20px #ffe5730b;
}

.zBD222-bonustrans2__btn {
  display: inline-block;
  margin-top: .7rem;
  padding: 1rem 2.3rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-bonustrans2__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-bonustrans2__btn:hover,
.zBD222-bonustrans2__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.zBD222-bonustrans2__btn:hover::after {
  animation: btnshine .6s forwards
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

.zBD222-aviatorhero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

.zBD222-aviatorhero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden
}

.zBD222-aviatorhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) blur(2px)
}

.zBD222-aviatorhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  opacity: 0.96
}

.zBD222-aviatorhero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  opacity: .14;
  animation: avflare 17s ease-in-out infinite alternate
}

.zBD222-aviatorhero__flare--1 {
  width: 310px;
  height: 210px;
  left: -120px;
  top: 80px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.zBD222-aviatorhero__flare--2 {
  width: 190px;
  height: 150px;
  right: -80px;
  bottom: -50px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 7s
}

@keyframes avflare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* Animated plane */
.zBD222-aviatorhero__plane {
  position: absolute;
  top: 42%;
  left: -130px;
  width: 120px;
  height: 60px;
  z-index: 2;
  background:  center/contain no-repeat;
  animation: plane-fly 12s cubic-bezier(.42, 0, .41, 1) infinite;
  pointer-events: none;
  opacity: .85;
}

@keyframes plane-fly {
  0% {
    left: -130px;
    top: 42%;
    transform: scale(1) rotate(-7deg);
  }

  30% {
    left: 35vw;
    top: 36%;
    transform: scale(1.11) rotate(-3deg);
  }

  55% {
    left: 65vw;
    top: 31%;
    transform: scale(1.09) rotate(2deg);
  }

  80% {
    left: 88vw;
    top: 38%;
    transform: scale(1.02) rotate(6deg);
  }

  100% {
    left: 110vw;
    top: 43%;
    transform: scale(.98) rotate(10deg);
  }
}

/* Content */
.zBD222-aviatorhero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin:  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.2rem;
}

.zBD222-aviatorhero__content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-aviatorhero__title {
  font-size: clamp(2.25rem, 5vw, 2.95rem);
  font-weight: 800;
  margin: 0;
  margin-bottom: 20px;
}

.zBD222-aviatorhero__desc {
  font-size: 1.09rem;
  margin: 0
}

/* CTA Buttons */
.zBD222-aviatorhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%
}

.zBD222-aviatorhero__btn {
  display: inline-block;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1.1rem 2.4rem;
  
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-aviatorhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.zBD222-aviatorhero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe5732c
}

.zBD222-aviatorhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}


.zBD222-aviatorhero__btn:hover::after {
  animation: aviatorsheen .7s forwards
}

@keyframes aviatorsheen {
  to {
    left: 130%
  }
}

/* Responsive layout for CTAs and images */
@media(min-width:720px) {
  .zBD222-aviatorhero__ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.zBD222-aviatorlux {
  position: relative;
  background: linear-gradient(125deg, #000000 0%, #000000 85%, #000000 100%);
  padding: 5rem 0 5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

/* Animated luxury clouds */
.zBD222-aviatorlux__cloud {
  position: absolute;
  z-index: 1;
  opacity: .18;
  filter: blur(8px);
  background: radial-gradient(ellipse 70% 50% at 50% 50%, #fff 0%, #ffe57333 70%, transparent 100%);
  animation: cloud-move 23s linear infinite;
}

.zBD222-aviatorlux__cloud--1 {
  width: 330px;
  height: 120px;
  top: 7vh;
  left: 10vw;
  animation-delay: 0s;
}

.zBD222-aviatorlux__cloud--2 {
  width: 210px;
  height: 70px;
  top: 60vh;
  left: 6vw;
  animation-delay: 5s;
}

.zBD222-aviatorlux__cloud--3 {
  width: 260px;
  height: 90px;
  top: 25vh;
  right: 7vw;
  animation-delay: 12s;
}

@keyframes cloud-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(80px);
  }
}

/* Sparkle stars */
.zBD222-aviatorlux__stars .star {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #ffe573 0 50%, transparent 70%);
  border-radius: 50%;
  opacity: .29;
  z-index: 3;
  animation: sparkle 2.7s ease-in-out infinite alternate;
}

.star--1 {
  top: 22vh;
  left: 14vw;
  animation-delay: 0s;
}

.star--2 {
  top: 33vh;
  left: 49vw;
  animation-delay: 1.2s;
}

.star--3 {
  top: 18vh;
  right: 15vw;
  animation-delay: 0.6s;
}

.star--4 {
  bottom: 23vh;
  left: 35vw;
  animation-delay: 2s;
}

.star--5 {
  bottom: 17vh;
  right: 10vw;
  animation-delay: 1.6s;
}

@keyframes sparkle {
  0% {
    opacity: .13
  }

  100% {
    opacity: .42
  }
}

.zBD222-aviatorlux__wrapper {
  position: relative;
  z-index: 5;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.9rem;
  padding: 0 1.2rem;
}

.zBD222-aviatorlux__figure {
  margin: 0 auto 1.5rem auto;
  animation: imgfloat 8s ease-in-out infinite alternate;
}

@keyframes imgfloat {
  0% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(18px);
  }
}

.zBD222-aviatorlux__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 48px #ffe57322, 0 0 0 4px #f855ee26;
  display: block;
}

.zBD222-aviatorlux__content {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.28rem;
}

.zBD222-aviatorlux__title {
  font-size: 2.85rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #fff 60%, #f855ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zBD222-aviatorlux__text {
  font-size: 1.1rem;
  margin: 0;
  background: rgba(41, 19, 70, 0.15);
  padding: .95rem 1.3rem;
  border-radius: 15px;
  box-shadow: 0 3px 20px #f855ee1c;
}

.zBD222-aviatorlux__btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 10px;
  border: none;
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57322;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s;
}

.zBD222-aviatorlux__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-aviatorlux__btn:hover,
.zBD222-aviatorlux__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.zBD222-aviatorlux__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

@media (min-width:850px) {
  .zBD222-aviatorlux__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 2.6rem;
  }

  .zBD222-aviatorlux__figure {
    margin: 0 0 0 0;
  }

  .zBD222-aviatorlux__content {
    align-items: center;
    
  }
}

.zBD222-aviatorsteps {
  position: relative;
  background: linear-gradient(140deg, #000000 0%, #000000 70%, #000000 100%);
  padding: 5rem 0 5rem 0;
  color: #fff;

  overflow: hidden;
  text-align: center;
}

/* Neon Runway Lines */
.zBD222-aviatorsteps__runway {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ffe573cc 10%, #f855ee33 80%, transparent 100%);
  border-radius: 18px;
  transform: translateX(-50%) skewX(-8deg);
  box-shadow: 0 0 40px 8px #ffe57366;
  z-index: 1;
  opacity: .13;
  animation: runwaypulse 4.2s linear infinite alternate;
}

.zBD222-aviatorsteps__runway--2 {
  left: 52.2%;
  width: 4px;
  opacity: .07;
  animation-delay: 2.2s;
}

@keyframes runwaypulse {
  0% {
    filter: blur(0px);
  }

  100% {
    filter: blur(10px);
  }
}

/* Golden floating dots */
.zBD222-aviatorsteps__golden .dot {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffe573 30%, #fff 70%, transparent 100%);
  border-radius: 50%;
  opacity: .23;
  z-index: 2;
  animation: dotfloat 8s ease-in-out infinite alternate;
}

.dot--1 {
  top: 12vh;
  left: 18vw;
  animation-delay: 0.7s;
}

.dot--2 {
  top: 55vh;
  left: 10vw;
  animation-delay: 2.2s;
}

.dot--3 {
  top: 32vh;
  left: 47vw;
  animation-delay: 1.6s;
}

.dot--4 {
  top: 21vh;
  right: 14vw;
  animation-delay: 3.1s;
}

.dot--5 {
  bottom: 12vh;
  right: 18vw;
  animation-delay: 1.2s;
}

@keyframes dotfloat {
  0% {
    opacity: .18;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: .35;
    transform: scale(1.11) translateY(-16px);
  }
}

/* Container/Stacked Layout */
.zBD222-aviatorsteps__container {
  position: relative;
  z-index: 5;
  max-width: 1190px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.2rem;
}

.zBD222-aviatorsteps__figure {
  margin: 0 auto 2.1rem auto;
  animation: imgupdown 9s ease-in-out infinite alternate;
}

@keyframes imgupdown {
  0% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(19px);
  }
}

.zBD222-gamestyle__cards {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.zBD222-gamestyle__card {
  background: #ffffff52;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zBD222-gamestyle__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.zBD222-gamestyle__card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.zBD222-gamestyle__card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.zBD222-gamestyle__cta {
  text-align: center;
  margin: 2.5rem 0 1rem;
}

.zBD222-gamestyle__btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #ff5a5f;
  color: #ffffff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.zBD222-gamestyle__btn:hover {
  background-color: #e04848;
}

.zBD222-gamestyle__figure {
  margin-top: 2rem;
  text-align: center;
}

.zBD222-gamestyle__img {
  max-width: 100%;
  border-radius: 8px;
}


.zBD222-aviatorsteps__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 46px #ffe57322, 0 0 0 4px #f855ee29;
  display: block;
}

.zBD222-aviatorsteps__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.zBD222-aviatorsteps__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #fff 60%, #f855ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5em;
}

.zBD222-aviatorsteps__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
  display: flex;
  flex-direction: column;
  gap: 1.13em;
  width: 100%;
}

.zBD222-aviatorsteps__steps li {
  font-size: 1.08rem;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 1.1em 1.4em;
  box-shadow: 0 2px 14px #ffe5730d;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.zBD222-aviatorsteps__info {
  font-size: 1.04rem;
  color: #ffe573;
  margin: .5em auto 0 auto;
  background: rgba(80, 0, 70, .13);
  border-radius: 10px;
  padding: .76em 1.2em;
  box-shadow: 0 2px 10px #ffe5730b;
  max-width: 430px;
}

.zBD222-aviatorsteps__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57322;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-aviatorsteps__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-aviatorsteps__btn:hover,
.zBD222-aviatorsteps__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.zBD222-aviatorsteps__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

/* Responsive for mobile: Stack, center text */
@media (max-width:680px) {

  .zBD222-aviatorsteps__steps li {
    padding: 1.1em 0.8em;
  }

  .zBD222-gamestyle__cards { 
    grid-template-columns: 1fr;
  }

  .zBD222-aviatorsteps__container {
    padding: 0 0.5rem;
  }
}

.zBD222-aviatorwhy {
  position: relative;
  background: linear-gradient(140deg, #000000 0%, #370202 85%, #000000 100%);
  padding: 5rem 0 5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

.zBD222-aviatorwhy__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000000;
}

.zBD222-aviatorwhy__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .16;
  pointer-events: none;
}

.zBD222-aviatorwhy__flare--1 {
  width: 210px;
  height: 120px;
  left: 12vw;
  top: 13vh;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: why-flare 11s linear infinite alternate;
}

.zBD222-aviatorwhy__flare--2 {
  width: 140px;
  height: 80px;
  right: 8vw;
  bottom: 10vh;
  background: radial-gradient(circle, #f855ee 0%, transparent 80%);
  animation: why-flare 14s linear infinite alternate-reverse;
}

@keyframes why-flare {
  0% {
    opacity: .14;
  }

  100% {
    opacity: .24;
  }
}

.zBD222-aviatorwhy__wrapper {
  position: relative;
  z-index: 5;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.2rem;
}

.zBD222-aviatorwhy__figure {
  margin: 0 auto 2.2rem auto;
  
  max-width: 46vw;
  animation: img-why-float 8s ease-in-out infinite alternate;
}

@keyframes img-why-float {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(13px);
  }
}

.zBD222-aviatorwhy__img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 48px #ffe57320, 0 0 0 3px #f855ee21;
  display: block;
}

.zBD222-aviatorwhy__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  width: 100%;
}

@media (min-width:600px) {
  .zBD222-aviatorwhy__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.zBD222-aviatorwhy__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 2px 24px #ffe57315;
  padding: 2.3rem 1.1rem 1.4rem 1.3rem;
  gap: 1.1rem;
  transition: transform .23s, box-shadow .23s;
  position: relative;
  overflow: hidden;
  border: 1.2px solid #ffe57328;
  justify-content: flex-start;
  min-height: 138px;
  animation: card-pop 1.08s cubic-bezier(.4, 1.3, .4, 1) both;
}

.zBD222-aviatorwhy__card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 6px 40px #f855ee26, 0 0 0 2px #ffe57322;
}

@keyframes card-pop {
  from {
    opacity: 0;
    transform: scale(.92) translateY(24px);
  }
}

.zBD222-aviatorwhy__icon {
  flex: 0 0 auto;
  font-size: 2.3rem;
  color: #ffe573;
  margin-right: .32em;
  margin-top: .15em;
  text-shadow: 0 2px 18px #ffe57333;
  background: linear-gradient(135deg, #ffe573, #f855ee 66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px #ffe57322);
}

.zBD222-aviatorwhy__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-aviatorwhy__mark {
  font-weight: 700;
  color: #ffe573;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: inline-block;
  margin-bottom: .16em;
  font-size: 1.1rem;
}

.zBD222-aviatorwhy__text {
  font-size: 1.07rem;
  color: #fff;
  margin: 0;
  display: inline-block;
}

.zBD222-aviatorwhy__btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-aviatorwhy__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-aviatorwhy__btn:hover,
.zBD222-aviatorwhy__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.zBD222-aviatorwhy__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

@media (max-width:480px) {

  
  .zBD222-aviatorwhy__cards {
    gap: 1.18rem;
  }

  .zBD222-aviatorwhy__card {
    padding: 1.7rem 0.7rem 1rem 0.7rem;
  }
}

.zBD222-crazyhero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* === Stage spotlights === */
.zBD222-crazyhero__spot {
  position: absolute;
  background: radial-gradient(circle at 50% 0,
      #ffe57366 0%, transparent 70%);
  opacity: .14;
  pointer-events: none;
  z-index: 2;
  transform-origin: top;
}

.zBD222-crazyhero__spot--l {
  left: -20vw;
  top: -10vh;
  transform: rotate(-20deg);
}

.zBD222-crazyhero__spot--r {
  right: -20vw;
  top: -10vh;
  transform: rotate(20deg);
}

/* === Confetti strips === */
.zBD222-crazyhero__confetti {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none
}

.strip {
  position: absolute;
  width: 6px;
  height: 22px;
  background: #ffe573;
  border-radius: 2px;
  filter: drop-shadow(0 0 6px #ffe573aa);
  opacity: .8;
  animation: strip-fall 8s linear infinite;
}

.strip--1 {
  left: 15%;
  animation-delay: 0s;
}

.strip--2 {
  left: 42%;
  animation-delay: 1.7s;
}

.strip--3 {
  left: 68%;
  animation-delay: 3.1s;
}

.strip--4 {
  left: 83%;
  animation-delay: 5.2s;
}

.strip--5 {
  left: 55%;
  animation-delay: 6.4s;
}

@keyframes strip-fall {
  0% {
    top: -10vh;
    transform: rotate(0)
  }

  100% {
    top: 110vh;
    transform: rotate(360deg)
  }
}

/* === Background image === */
.zBD222-crazyhero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden
}

.zBD222-crazyhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.zBD222-crazyhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e3300 0%, #000000 100%);
  opacity: .9
}

/* === Container === */
.zBD222-crazyhero__container {
  position: relative;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
align-items: center;
  width: 100%;
  padding: 3rem 1.2rem;
}

/* === Headline & copy === */
.zBD222-crazyhero__title {
  font-size: clamp(2.3rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.zBD222-crazyhero__desc {
  font-size: 1.09rem;
  margin: 0 auto
}

/* === Wheel illustration === */
.zBD222-crazyhero__figure {
  margin: 2.2rem auto 2.4rem;
  width: 230px;
  max-width: 55vw
}

.zBD222-crazyhero__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 50px #ffe57328, 0 0 0 3px #f855ee34;
  animation: wheel-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes wheel-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* === Buttons === */
.zBD222-crazyhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem
}

.zBD222-crazyhero__btn {
  display: inline-block;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1.05rem 2.6rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s
}

.zBD222-crazyhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .21), transparent);
  transform: skewX(-25deg)
}

.zBD222-crazyhero__btn--main {
  background: linear-gradient(90deg, #ffe573 35%, #f855ee 100%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57330
}

.zBD222-crazyhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.zBD222-crazyhero__btn--main:hover,
.zBD222-crazyhero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 85%);
  color: #210541
}

.zBD222-crazyhero__btn--ghost:hover,
.zBD222-crazyhero__btn--ghost:focus {
  background: #ffe573;
  color: #fff;
  border-color: #f855ee
}

.zBD222-crazyhero__btn:hover::after {
  animation: crazy-sheen .7s forwards
}

@keyframes crazy-sheen {
  to {
    left: 130%
  }
}

@media(min-width:768px) {
  .zBD222-crazyhero__ctas {
    margin-top: 20px;
    flex-direction: row;
    justify-content: center;
    gap: 1.3rem
  }

}

@media(max-width:720px) {
  .zBD222-crazyhero__figure {
    width: 150px
  }
}

.zBD222-crazywhy2 {
  position: relative;
  background: #000000;
  padding: 5rem 0 5rem 0;
  color: #fff;

  overflow: hidden;
}

/* flares */
.zBD222-crazywhy2__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .12;
  pointer-events: none;
  animation: flare-pulse 12s ease-in-out infinite alternate;
}

.zBD222-crazywhy2__flare--left {
  width: 260px;
  height: 180px;
  left: -80px;
  top: 20%;
  background: radial-gradient(circle, #ffe573 0%, transparent 80%);
}

.zBD222-crazywhy2__flare--right {
  width: 200px;
  height: 140px;
  right: -60px;
  bottom: 15%;
  background: radial-gradient(circle, #f855ee 0%, transparent 85%);
  animation-delay: 6s;
}

@keyframes flare-pulse {
  0% {
    opacity: .08;
  }

  100% {
    opacity: .20;
  }
}

/* wrapper */
.zBD222-crazywhy2__wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  padding: 0 1.2rem;
}

@media(min-width:900px) {
  .zBD222-crazywhy2__wrapper {
    display: grid;
    
    gap: 20px;
  }


  
}

/* visual */

.zBD222-crazywhy2__figure {
  margin: 0 auto;
  animation: img-float 8s ease-in-out infinite alternate;
}

@keyframes img-float {
  0% {
    transform: translateY(-12px) scale(1);
  }

  100% {
    transform: translateY(12px) scale(1.02);
  }
}

.zBD222-crazywhy2__img {
  border-radius: 22px;
  width: 100%;
  display: block;
}

/* content */
.zBD222-crazywhy2__content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.zBD222-crazywhy2__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* title */
.zBD222-crazywhy2__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #71f855 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* text paragraphs */
.zBD222-crazywhy2__text p {
  font-size: 1.08rem;
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  box-shadow: 0 2px 16px #ffe57310;
}


/* button */
.zBD222-crazywhy2__cta {
  margin-top: 1.8rem;
  text-align: center;
}

.zBD222-crazywhy2__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 22px #ffe5731a;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s;
}

.zBD222-crazywhy2__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.zBD222-crazywhy2__btn:hover,
.zBD222-crazywhy2__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 85%);
  color: #1e0f37;
}

.zBD222-crazywhy2__btn:hover::after {
  animation: btn-sheen 0.6s forwards;
}

@keyframes btn-sheen {
  to {
    left: 130%;
  }
}

/* disable line-height globally in this section */
.zBD222-crazywhy2,
.zBD222-crazywhy2 * {
  line-height: 1 !important;
  padding: 2px;
}

.zBD222-wheelinfo {
  position: relative;
  background: #000000;
  padding: 7rem 0 6.5rem;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* Aurora ribbons */
.zBD222-wheelinfo__aurora {
  position: absolute;
  width: 120%;
  height: 220%;
  top: -60%;
  left: -10%;
  background: #000000;
  opacity: .08;
  filter: blur(80px);
  animation: aurora-spin 20s linear infinite;
  transform-origin: center;
}

.zBD222-wheelinfo__aurora--r {
  animation-direction: reverse;
  left: auto;
  right: -10%
}

@keyframes aurora-spin {
  to {
    transform: rotate(360deg)
  }
}

/* Layout */
.zBD222-wheelinfo__container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem
}

@media(min-width:900px) {
  .zBD222-wheelinfo__container {
    display: grid;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
    margin-bottom: 20px;
  }
}

/* Columns */
.zBD222-wheelinfo__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.zBD222-wheelinfo__col--center {
  flex: 0 0 auto
}

@media(min-width:900px) {
  .zBD222-wheelinfo__col--left {
    align-items: flex-end
  }

  .zBD222-wheelinfo__col--right {
    align-items: center
  }
}

/* Image */
.zBD222-wheelinfo__figure {
  margin: 0;
  perspective: 900px
}

.zBD222-wheelinfo__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 52px #ffe57326, 0 0 0 3px #f855ee28;
}

@keyframes wheel-tilt {
  0% {
    transform: rotateY(-9deg)
  }

  100% {
    transform: rotateY(9deg)
  }
}

.zBD222-bonuscards__content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Text boxes */
.zBD222-wheelinfo__box {
  font-size: 1.07rem;
  background: rgba(255, 255, 255, .05);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 3px 22px #ffe57312;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zBD222-wheelinfo__mark {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #ffe573
}

/* CTA Button */
.zBD222-wheelinfo__cta {
  margin-top: .4rem
}

.zBD222-wheelinfo__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-wheelinfo__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-wheelinfo__btn:hover,
.zBD222-wheelinfo__btn:focus {
  background: linear-gradient(90deg, #f855ee 20%, #ffe573 90%);
  color: #1e1035
}

.zBD222-wheelinfo__btn:hover::after {
  animation: btn-sheen .6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* Remove line-height for precision */
.zBD222-wheelinfo,
.zBD222-wheelinfo * {
  line-height: 1 !important;
  padding: 2px;
}

.zBD222-bonuscards {
  position: relative;
  background: #000000;
  padding: 7rem 1.2rem 6rem;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* Sparks */
.zBD222-bonuscards__spark {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .14;
  pointer-events: none;
  animation: spark-move 18s linear infinite alternate
}

.zBD222-bonuscards__spark--1 {
  width: 180px;
  height: 130px;
  left: 10vw;
  top: 18vh;
  background: #ffe573
}

.zBD222-bonuscards__spark--2 {
  width: 150px;
  height: 110px;
  right: 12vw;
  top: 32vh;
  background: #f855ee;
  animation-delay: 4s
}

.zBD222-bonuscards__spark--3 {
  width: 200px;
  height: 140px;
  left: 45vw;
  bottom: 10vh;
  background: #ffe573;
  animation-delay: 8s
}

.zBD222-install-split__cards {
  display: grid;
 gap: 0.5rem;
  margin: 1.5rem 0;
}

.zBD222-install-split__card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(255 255 255 / 67%);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zBD222-install-split__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.zBD222-install-split__card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.zBD222-install-split__card-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.zBD222-install-split__help {
  margin: 1rem 0;
  font-size: 0.95rem;
}

.zBD222-install-split__img-bottom {
  max-width: 100%;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
}

.zBD222-install-split__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff5a5f;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}

.zBD222-install-split__btn:hover {
  background-color: #e04848;
}


@keyframes spark-move {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.15)
  }
}

/* Heading */
.zBD222-bonuscards__heading {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 2.4rem;
  background: linear-gradient(90deg, #ffe573 20%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* Grid */
.zBD222-bonuscards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.6rem;
  max-width: 1100px;
  margin: 0 auto
}

/* Card */
.zBD222-bonuscards__card {
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 38px #ffe57314;
  border: 1px solid #ffe57320;
  transition: transform .25s, box-shadow .25s;
  position: relative
}

.zBD222-bonuscards__card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 46px #f855ee26, 0 0 0 2px #ffe57326
}

/* Card Image */
.zBD222-bonuscards__fig {
  margin: 0;
  overflow: hidden
}

.zBD222-bonuscards__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .32s
}

.zBD222-bonuscards__card:hover .zBD222-bonuscards__img {
  transform: scale(1.08)
}

/* Card Body */
.zBD222-bonuscards__body {
  padding: 1.6rem 1.3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.zBD222-bonuscards__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  align-items: center;
}

/* Mark styling */
.zBD222-bonuscards__tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  color: #ffe573;
  font-size: 1.12rem
}

.zBD222-bonuscards__text {
  font-size: 1.03rem;
  margin: 0
}

/* CTA Button */
.zBD222-bonuscards__btn {
  display: inline-block;
  
  padding: 1rem 2.8rem;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #29014b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.zBD222-bonuscards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.zBD222-bonuscards__btn:hover,
.zBD222-bonuscards__btn:focus {
  background: linear-gradient(90deg, #f855ee 20%, #ffe573 90%);
  color: #1e103c
}

.zBD222-bonuscards__btn:hover::after {
  animation: btn-sheen .6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* Prevent line-height */
.zBD222-bonuscards,
.zBD222-bonuscards * {
  line-height: 1 !important;
  padding: 2px;
}

/* Container & Background */
.zBD222-journey {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5rem 0;
  background: #000000;
  color: #f5f5f5;
  
}

.zBD222-journey__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Animated Waves */
.zBD222-journey__wave {
  position: absolute;
  width: 160%;
  height: 120%;
  background: rgba(255,255,255,0.02);
  border-radius: 50% 50% 40% 60%;
  animation: wave-move 12s ease-in-out infinite;
}

.zBD222-journey__wave--one {
  top: -30%;
  left: -40%;
  animation-delay: 0s;
}
.zBD222-journey__wave--two {
  top: -40%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes wave-move {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-10%, 10%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Spark Canvas (if used) */
#journeySpark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Content Wrapper */
.zBD222-journey__wrap {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.zBD222-journey__header {
  text-align: center;
  color: #450000;
  margin-bottom: 40px;
}
.zBD222-journey__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.zBD222-journey__intro {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
}

/* Cards Grid */
.zBD222-journey__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

/* Individual Card */
.zBD222-journey__card {
  background: #000000;
    border-radius: 5rem;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zBD222-journey__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Card Image */
.zBD222-journey__card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Card Title & Text */
.zBD222-journey__card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffcc00; /* Brand accent */
}
.zBD222-journey__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

/* CTA Button */
.zBD222-journey__cta {
  text-align: center;
}
.zBD222-journey__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.zBD222-journey__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .zBD222-journey__title {
    font-size: 2rem;
  }
  .zBD222-journey__cards {
    gap: 16px;
  }
}

/* Grid container for the three feature cards */
.zBD222-gamesec__cards {
  display: grid;
 gap: 24px;
  margin: 40px 0;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Individual card styling */
.zBD222-gamesec__card {
  background: #1b1b2e2b;
  border-radius: 4rem;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zBD222-gamesec__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Card image */
.zBD222-gamesec__card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Card headline */
.zBD222-gamesec__card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffcc00;
}

/* Card descriptive text */
.zBD222-gamesec__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

.games-cards-body {
  display: grid;
  gap: 15px;
}

.imaj {
  margin-bottom: 20px;
}

/* CTA button */
.zBD222-gamesec__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.zBD222-gamesec__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Section wrapper */
.zBD222-standard {
  background: #000000;
  color: white;
  padding: 5rem 0 5rem 0;
  
}

/* Centered container */
.zBD222-standard__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column layout */
.zBD222-standard__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Content column */
.zBD222-standard__content {
  z-index: 1;
}

/* Section title */
.zBD222-standard__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffcc00;
}

/* Paragraph text */
.zBD222-standard__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  
}


/* Call-to-action wrapper */
.zBD222-standard__cta {
  margin-top: 24px;
}

/* CTA button */
.zBD222-standard__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.zBD222-standard__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Illustration column */
.zBD222-standard__figure {
  text-align: center;
}
.zBD222-standard__img {
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zBD222-standard {
    padding: 60px 16px;
  }
  .zBD222-standard__title {
    font-size: 1.75rem;
  }
  .zBD222-standard__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}




















/* ===== base ===== */
.zfooter {
  background: #281e0a;
  color: #d9d7e5;
  font-size: .95rem;
  padding: 60px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 1 ▸ logo + nav */
.zfooter__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px
}

.zfooter__logo img {
  width: 120px
}

.zfooter__links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.zfooter__links a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s
}

.zfooter__links a:hover {
  color: #fff
}

.zfooter__care {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 2 ▸ legal */
.zfooter__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center
}

.zfooter__age {
  font-weight: 900;
  color: #ff8540;
  display: flex;
  align-items: center;
  gap: 6px
}

.zBD222-crazyhero__container a img, .zBD222-hero__figure img,  .zBD222-casinohero__container img, .zBD222-slotshero__container img, .zBD222-gameshero__container img
, .zBD222-bet-hero__container img, .zBD222-loginhero__container img, .zBD222-apphero__container img, .zBD222-bonushero__container img, .zBD222-aviatorhero__container img
{
  border-radius: 10rem;
}

.zfooter__age-text {
  margin: 0;
  font-size: .9rem;
  color: #bcb8d2
}

.zfooter__care a {
  color: #6aa8ff;
  margin-right: 18px;
  width: 130px;
  text-decoration: none
}

.zfooter__care a:hover {
  color: #fff
}

/* 3 ▸ payments */
.zfooter__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center
}

.zfooter__payments i,
.zfooter__payments img,
.zfooter__crypto {
  font-size: 1.5rem;
  color: #ffb866;
  height: 42px;
  width: 42px;
  border-radius: 1rem;
  object-fit: contain;
  background-color: white;
  padding: 2px;
  display: flex;
  align-items: center
}

.zfooter__crypto {
  font-size: .85rem;
  font-weight: 800;
  padding: 6px 10px;
  border: 1px solid #ffb866;
  border-radius: 6px
}

/* divider (mobile only) */
.zfooter__divider {
  border: none;
  border-top: 1px solid #242235;
  display: none;
  margin: 16px 0
}

/* 4 ▸ socials */
.zfooter__social {
  display: flex;
  gap: 18px;
  justify-content: center
}

.zfooter__social a {
  color: #bcb8d2;
  font-size: 1.9rem;
  transition: color .2s
}

.zfooter__social a:hover {
  color: #ffb866
}

/* 5 ▸ closing */
.zfooter__closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.zfooter__closing-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fffffe;
  margin: 0
}

.zfooter__closing-text {
  margin: 0;
  color: #bcb8d2;

}

/* ===== responsive ===== */
@media(max-width:900px) {

  .zfooter__top,
  .n7gp-zones {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .zfooter__legal {
    align-items: center;
    text-align: center
  }
}

@media(max-width:768px) {

  /* center everything */
  .zfooter__payments,
  .zfooter__care {
    justify-content: center
  }



  .hero-body,
  .zBD222-reload__wrapper,
  .zBD222-crazywhy2__wrapper,
  .zBD222-slotshowto__tablist,
  .zBD222-gamestyle__grid {
    display: flex;
    flex-direction: column;
  }

  .zBD222-whyus__container {
    grid-template-columns: 1fr;
  }

  .feature {
    justify-content: center;
  }

  .zfooter__divider {
    display: block
  }
}


.zBD222-hotnow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(366px, 1fr));
  gap: 1.5rem;
}

.zBD222-hotnow__card {
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(92 55 16);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zBD222-hotnow__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.zBD222-hotnow__card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.zBD222-hotnow__card-text {
  font-size: 1rem;
  line-height: 1.5;}

.zBD222-hotnow__intro {
  font-size: 1rem;
  margin-top: 1rem;
}

.zBD222-hotnow__cta {
  text-align: center;
  margin: 2rem 0 1rem;
}

.zBD222-hotnow__btn {
  display: inline-block;
  background-color: #ff5a5f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.zBD222-hotnow__btn:hover {
  background-color: #e04848;
}

.zBD222-hotnow__figure {
  margin: 2rem 0;
  text-align: center;
}

.zBD222-hotnow__img {
  max-width: 100%;
  border-radius: 8px;
}


/* ========== n7lg – “Login Hero” Luxury Section ========== */



.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ========== n7fixed-bonus-banner ========== */
.n7fixed-bonus-banner {
  position: fixed;

  bottom: 0;
  width: 100%;
  z-index: 1010;
  background: rgb(56 56 56 / 58%);
  color: #ffffff;
border-radius: 0 !important;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 20px 30px;
  border: none;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;

  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  cursor: pointer;
  user-select: none;
  z-index: 1111111111111111111111111111;
  /* Disable highlight on tap in mobile */
  -webkit-tap-highlight-color: transparent;

}

.n7fixed-bonus-banner:hover,
.n7fixed-bonus-banner:focus-visible {
  
  
  transform: scale(1.01);
}

@media (max-width: 767px) {
  .n7fixed-bonus-banner {
    font-size: 1.08rem;
    padding: 17px 0 15px 0;
  }
}



.prpr {
  width: 18px;
  mask-image: white;
  border-radius: 100%;
}

.prpe {
  width: 18px;
  background-color: white;
  padding: 1px;
  fill: white;
  border-radius: 100%;
}

.zBD222-reload__text li {
  text-align: center;
}



.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}


.zBD222-vip__text li{
  text-align: center;
}
/* ==== FILLED кнопки: постоянный шейн через ::before ==== */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]) {
  position: relative;
  display: inline-block;
color: #0f3300;
    background: #ffd778;

  border: none;
  
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.7em 2.4em;
  
  overflow: hidden;
  z-index: 0;
}

/* Двигающийся блик — ВСЕГДА активен */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"])::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;             /* лежит под текстом */
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.55) 18%,
    rgba(255,255,255,0) 36%,
    rgba(255,255,255,.35) 54%,
    rgba(255,255,255,0) 72%
  );
  background-size: 200% 100%;
  animation: btnSheen 6.5s linear infinite;  /* ВСЕГДА работает */
  will-change: background-position;
}

/* Hover — чуть быстрее и теплее оттенок блика */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):hover::before,
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):focus::before {
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,240,160,.6) 18%,
    rgba(255,255,255,0) 36%,
    rgba(255,230,120,.4) 54%,
    rgba(255,255,255,0) 72%
  );
  animation-duration: 3.2s; /* быстрее на hover */
}

/* Active — не останавливаем анимацию, только легкое затемнение */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):active::before {
  filter: brightness(.95);
}

/* Кадры движения блика */
@keyframes btnSheen {
  0%   { background-position:   0% 0; }
  100% { background-position: 200% 0; }
}

/* Ripple при клике — оставляем */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"])::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  width: 8px; height: 8px;
  left: 50%; top: 50%;
  background: rgba(255,255,255,.21);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .22s, transform .6s cubic-bezier(.35,2.05,.45,.97);
}
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(16);
  transition: opacity .22s, transform .36s cubic-bezier(.32,2.2,.55,.99);
}

/* ==== OUTLINE / GHOST — граница без border-image, тоже с постоянным переливом ==== */
[class*="btn--outline"],
[class*="btn--ghost"] {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #0000;
  border: 2px solid transparent;
  
  padding: 0.7em 2.1em;
  font-weight: 600;
  letter-spacing: .06em;
  box-shadow: 0 0 0 2px rgba(148,224,255,.25);
  overflow: hidden;
  z-index: 0;
}

/* Перелив границы делаем отдельным псевдо-элементом под бордером */
[class*="btn--outline"]::before,
[class*="btn--ghost"]::before {
  content: "";
  position: absolute;
  inset: 0; /* заходим под бордер */
  z-index: -1;
  background: linear-gradient(90deg, #3f3116, #554119, #55411b);
  background-size: 200% 100%;
  animation: outlineSheen 7s linear infinite; /* ВСЕГДА работает */
}

@keyframes outlineSheen {
  0%   { background-position:   0% 0; }
  100% { background-position: 200% 0; }
}



/* Внутренняя подложка, чтобы середина была прозрачной */
[class*="btn--outline"]::after,
[class*="btn--ghost"]::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #0000;            /* прозрачный центр */
  z-index: 0;
  pointer-events: none;
}

[class*="btn--outline"]:hover::before,
[class*="btn--ghost"]:hover::before,
[class*="btn--outline"]:focus::before,
[class*="btn--ghost"]:focus::before {
  animation-duration: 3.2s;      /* быстрее на hover */
  filter: saturate(1.2);
}





img {
  border-radius: 1rem;
}

[class*="btn"]:not([class*="wrap"]),
[class*="button"]:not([class*="buttons"]) {
  padding: 15px 30px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2rem;
}






.ze77-appfocus__subtitle {
  color: white;
}

h1[class*="title"]:not([class*="subtitle"]) {
  font-size: 36px;
  line-height: 1;
}

h2 {
  font-size: 36px !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

header {
  margin: 0 !important;
}

[class*="content"]:not([class*="hero"]) {
  text-align: center;
  gap: 1rem !important;
}


[class*="heading"],
[class*="text"] {
  text-align: center;
}

[class*="actions"] {
  text-align: center;
  justify-content: center;
}

p {
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {

  h1[class*="title"]:not([class*="subtitle"]) {
    font-size: 36px;
  }

  h2 {
    font-size: 36px;
  }


  section[class*="hero"] {

    padding-top: 50px !important;
}


  [class*="btn"]:not([class*="wrap"]),
  [class*="button"]:not([class*="buttons"]) {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    font-weight: 700;
  }

  [class*="cta"] {
  gap: 0;
  margin-top: 11px;
}




}

/* Сетка карточек: 1 колонка на мобилке, 2 колонки ≥800px */
.zBD222-slotsnew__cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 2rem auto;
  width: 100%;
}


/* Оформление самой карточки */
.zBD222-slotsnew__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px rgba(255, 204, 34, 0.16);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .24s, box-shadow .28s;
}

.zBD222-slotsnew__card:hover {
  box-shadow: 0 15px 54px rgba(255, 204, 34, 0.32), 0 0 0 2px rgba(255, 204, 34, 0.73);
  transform: translateY(-8px) scale(1.03);
}

/* Заголовок карточки */
.zBD222-slotsnew__card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Текст под заголовком */
.zBD222-slotsnew__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}


[class*="_link"] {
  color: #6bedff;
  font-weight: bold;
}

  [class*="cta"] {
  margin-top: 0; }

 [class*="_link"]:hover { 
color: #c196ff;
text-decoration: underline;
  }

.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}




@media (max-width: 768px) {

  .livebet299__frame {
    display: none;
  }

  .luxhdr__logo-img {
height: 49px;
  }

  .luxhdr__burger {
    margin-left: 5px;
  }

  .zBD222-casinohero__content, .zBD222-apphero__content {
    padding: 0;
  }
}

.slots-body {
margin-top: 20px;
    display: flex
;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
 
.slots-body .zBD222-slotshowto__desc {
  padding: 10px;
  border-bottom: 1px solid white;
  border-radius: 2rem;
  flex-grow: 1;
    flex-basis: auto;
    width: clamp(300px, 25% - 20px, 300px);
 
    flex-direction: column;
}


main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
  padding-top: 75px;
}

@media (max-width: 768px) {

  section {
    padding: 20px !important;
  }

  .luxhdr__drm {
    font-size: 10px;
    padding: 8px;
  }

    .zBD222-action__cards-body, .zBD222-gamesec__cards, .zBD222-journey__cards {
    display: flex;
    flex-direction: column;
  }

  .zBD222-hero__title {
    margin-top: 0;
  }

  .zBD222-slotpromos__img,
  .zBD222-sportsimplified__sportcard img,
  .zBD222-confidence__img,
  .zBD222-localbd__flag img,
  .zBD222-skillplay__img,
  .zBD222-appbonus__img,
  .zBD222-crashbet__img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .lux-header__login-btn,
  .zBD222-bonuscalendar__calendarvisual,
  .zBD222-bonuscalendar__calendarvisual img {
    width: auto !important;
  }

  .zBD222-localbd__gameimg,
  .zBD222-bonuscalendar__calendarvisual,
  .zBD222-bonuscalendar__calendarvisual img {
    height: auto;
  }

  .ze77-tools__bubbles,
  .zBD222-bonuscalendar-btn,
  .mobileaccess-8iii__list li,
  .fast-8iii__list li,
  .zBD222-mobileperf__features,
  .zBD222-topslots__features,
  .smart-8iii__list li,
  .zBD222-bet__badges,
  .crash-8iii__feat,
  .zBD222-loginaccess__features,
  .zBD222-loginperks__features {
    justify-content: center
  }

  .ze77-focusedgames__img {
    max-width: 100%;
  }

  .n7bt-imgcol,
  .crash-8iii__visual,
  .rewards-8iii__ticket,
  .pay-8iii__visual,
  .slotsPromo-8iii__visual,
  .loyalty-8iii__visual,
  .banking-roadmap__card img,
  .n7bt-content {
    flex: none;
    max-width: 100%;
  }

  main {
    padding-top: 50px;
  }

  .luxhdr__lang {
    font-size: 11px;
  }

  .zBD222-luxehero__cta-row,
  .n777-why__container,
  .n777-highlights__container,
  .ze77-applite__actions,
  .n7wl-grid,
  .n7dk-wrapper,.zBD222-gameshero__container,
  .n7lp-container,
  .n7gr-grid,
  .sportcards299__spinner,  .slots-body ,.zBD222-loginhero__container,.zBD222-bonushero__container,.zBD222-aviatorhero__container,.zBD222-crazyhero__container,
.zBD222-casinohero__container,.zBD222-slotshero__container,
  .zBD222-install-split__wrapper,
  .n7ct-wrap,
  .bonuscal-8iii__flex,
  .ze77-hero__actions,.zBD222-action__cards,
  .zBD222-wheelinfo__container,
  .n7bt-inner,.zBD222-hero__ctas,
  .nx7l-actions,
  .zBD222-allgames__actions,
  .ze77-games__actions,
  .ze77-slots__actions {
    display: flex;
    flex-direction: column;

  }

  .zBD222-elevate__grid, .zBD222-bet-hero__container {
    display: flex;
    flex-direction: column-reverse;
  }

  .zBD222-slotshero__content,.zBD222-aviatorhero__content,.zBD222-crazyhero__container,.zBD222-aviatorhero__container,.zBD222-bonushero__content,.zBD222-bonushero__container,.zBD222-apphero__container,.zBD222-loginhero__content, .zBD222-gameshero__content, .zBD222-bet-hero__content {
    padding: 0;
  }

  .zBD222-crazywhy2__wrapper {
    flex-direction: column-reverse;
    gap: 10px;
  }
  

  .zBD222-casinohero__title,.zBD222-crazyhero__title,.zBD222-crazyhero__desc,.zBD222-aviatorhero__title,.zBD222-aviatorhero__desc,.zBD222-bonushero__title,.zBD222-bonushero__desc,.zBD222-apphero__desc,.zBD222-loginhero__title,.zBD222-loginhero__desc,.zBD222-bet-hero__title,.zBD222-bet-hero__header,.zBD222-gameshero__title,.zBD222-gameshero__header,.zBD222-gameshero__content,.zBD222-slotshero__header,.zBD222-slotshero__title, .zBD222-casinohero__header {
    margin: 0;
    margin-bottom: 0.5em;
  }

  .zBD222-apphero__desc {
    margin: 0;
  }

  .zBD222-categories__container, .zBD222-whyus__container, .zBD222-welcome__cube-face {
    padding: 0;
  }


  [class*="actions"],.zBD222-aviatorhero__content,.zBD222-bonushero__content,.zBD222-apphero__content,.zBD222-loginhero__content, .zBD222-slotshero__content, .zBD222-gameshero__content {
    gap: 0;
  }

  .hero-body {
    flex-direction: column;
  }

}

.zBD222-recovery__figure {
  margin-bottom: 20px !important;
}

@media (max-width: 505px) {
.zBD222-cardsec__container,.zBD222-casinohero__container,.zBD222-slotshero__container,.zBD222-gameshero__container,.zBD222-bet-hero__container,.zBD222-loginhero__container,.zBD222-crazywhy2__wrapper,.zBD222-aviatorlux__wrapper,.zBD222-aviatorsteps__container,.zBD222-aviatorwhy__wrapper,.zBD222-reload__wrapper,.zBD222-vip__card,.zBD222-sportsbet__container,.zBD222-sportsbet__container,.zBD222-sports-cards__container,.zBD222-livebet__container,.zBD222-logincards__container,.zBD222-awaits__card,.zBD222-experience__container,.zBD222-gamestyle__container,.zBD222-hotnow__container, .zBD222-action__container, .zBD222-slotscats__container, .zBD222-slotshowto__container, .zBD222-slotsnew__container {
  padding: 0;
}

.zBD222-livebet__container {
  display: flex !important;
  flex-direction: column !important;
}

.zBD222-awaits__card, .zBD222-welcome__cube-face, .zBD222-vip__card {
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border: none  ;
}

.zBD222-awaits__body {
  gap: 0;
}

.zBD222-vip__btn, .zBD222-aviatorwhy__btn {
  margin: 0 !important;
}

}

    .zBD222-aviatorlux__content {
    gap: 0 !important;
  }

  figure {
    margin: 0 !important;
  }

.n7fixed-bonus-banner {

  margin-bottom: 0 !important;
}


html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */


/* Футер всегда внизу */
footer {


  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.lux-btn--login {
  padding: 14px;
  padding: 8px 18px;
}

.luxhdr__actions {
  gap: 10px !important;
}

.sideacc299__content-title {
  text-align: left;
}

.zBD222-crazywhy2__wrapper, .zBD222-wheelinfo, .zBD222-bonuscards {
  padding: 60px 10px !important;
}

.zBD222-crazywhy2__wrapper {
  padding-bottom: 0 !important;
}

.zfooter__care a img {
  border-radius: 0;
}

.n7fixed-bonus-banner {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  font-size: 28px !important;
}

.zfooter__links {
  text-decoration: none !important;
}

.zfooter__links li:hover {
  text-decoration: underline;
}

@media (max-width: 505px) {

.n7fixed-bonus-banner {
  font-size: 20px !important;
}

.luxhdr__actions {
  gap: 1px !important;
}

}

