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: 'Lato';
  src: local('Lato'),
    url('fonts/Lato-Regular.ttf') format('truetype');
  font-display: normal;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;

  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: #3d0000;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  width: 100%;
  z-index: 111111111111111;
  position: fixed;
}

.luxhdr__container {
  max-width: 1260px;
  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 {
  height: 76px;

  border-radius: 12px;
  margin-right: 12px;
  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: 48px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 14px;
  justify-content: 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;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.luxhdr__nav-link:hover,
.luxhdr__nav-link--active {
  color: #f80;
  border-bottom: 2.5px solid #f80;
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.luxhdr__drm {
background: #da0100;
    color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.02rem;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 14px rgba(255, 136, 0, 0.08);
  animation:
    glow-pulse-const 1.8s infinite alternate ease-in-out,
    scale-pulse 2.5s infinite ease-in-out;
}

.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(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__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: 20px;
  }

  .luxhdr__actions {
    margin-left: auto;
  }

  .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;
  }
}

.lux-dark-VS555 {
  background: #720000;
  color: #e0e0e0;
  padding: 60px 20px;
  
}

.lux-dark-VS555__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lux-dark-VS555__content {
  flex: 1;
  text-align: center;
}

.lux-dark-VS555__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.lux-dark-VS555__text {

  margin-bottom: 25px;
}

.lux-dark-VS555__text a {
  color: yellow;
  font-weight: 700;
}

.lux-dark-VS555__features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.lux-dark-VS555__features li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.lux-dark-VS555__actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-VS555 {
  padding: 14px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-VS555--primary {
  background: #e03e5b;
  color: #fff;
}

.btn-VS555--secondary {
  background: #303030;
  color: #e0e0e0;
  border: 1px solid #555;
}

/* Glow & scale animations */
.btn-VS555:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(224, 62, 91, 0.6), 0 0 20px rgba(224, 62, 91, 0.4);
}

.btn-VS555::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-VS555:hover::after {
  opacity: 1;
  animation: shine-VS555 1s ease-in-out forwards;
}

@keyframes shine-VS555 {
  from {
    transform: translate(-100%, -100%) rotate(45deg);
  }

  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.lux-dark-VS555__image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive: center everything on mobile */
@media (max-width: 767px) {
  .lux-dark-VS555__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .lux-dark-VS555__actions {
    justify-content: center;
  }
}

.zen-VS555 {
  
  padding: 80px 20px;

}

.zen-VS555__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.zen-VS555__content {
  flex: 1;
}

.zen-VS555__visual {
  flex: 1;
}

.zen-VS555__visual img {
  width: 100%;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

/* Text styles */
.zen-VS555__title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  
}

.zen-VS555__lead {
  font-size: 1.1rem;
  ;
  margin-bottom: 20px;
}

.zen-VS555__text {
  margin-bottom: 18px;
  ;
}

.zen-VS555__text--community {
  font-style: italic;
  color: #3c3c3c;
}

.zen-VS555__bonus {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-left: 4px solid #e03e5b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Link styling */
.zen-VS555__link {
  color: #e03e5b;
  text-decoration: none;
  border-bottom: 1px dashed #e03e5b;
  transition: color .3s, border-color .3s;
}

.zen-VS555__link:hover {
  color: #ff6191;
  border-color: #ff6191;
}

/* Button & animation */
.btn-zen {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 16px 36px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.btn-zen:hover {
  transform: scale(1.05);
}

.btn-zen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transform: translate(0, 0) rotate(45deg);
  transition: opacity .5s ease;
}

.btn-zen:hover::before {
  opacity: 1;
  animation: zen-shine 1s forwards;
}

@keyframes zen-shine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* Center buttons on all viewports */
.zen-VS555__actions {
  margin-top: 20px;
  text-align: center;
}

/* Responsive: stack & center */
@media (max-width: 767px) {
  .zen-VS555__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .zen-VS555__visual {
    margin-top: 30px;
  }
}

.whyVS555 {
  background: #d30000;
  color: #eee;
  padding: 60px 20px;
  
  background-size: cover;
}

.whyVS555__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.whyVS555__heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

/* Grid of cards */
.whyVS555__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.whyVS555__card {
  background: #1a1a1a;
  padding: 24px;
  border: 1px solid #333;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whyVS555__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.whyVS555__card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #e03e5b;
  text-align: center;
}

.whyVS555__card-text {
  font-size: 0.95rem;
  ;
}

/* Link styling */
.whyVS555__link {
  color: #ff6191;
  text-decoration: none;
  border-bottom: 1px dashed #ff6191;
  transition: color 0.3s, border-color 0.3s;
}

.whyVS555__link:hover {
  color: #ff8ab8;
  border-color: #ff8ab8;
}

/* Footer image & button */
.whyVS555__footer {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyVS555__image {
  width: 45%;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.whyVS555__button {
  background: #e03e5b;
  color: #fff;
  padding: 16px 36px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.whyVS555__button:hover {
  transform: scale(1.05);
}

/* Button shine */
.whyVS555__button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.whyVS555__button:hover::after {
  opacity: 1;
  animation: shine 1s forwards;
}

@keyframes shine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* Responsive: center everything under 768px */
@media (max-width: 767px) {
  .whyVS555__container {
    text-align: center;
  }

  .whyVS555__footer {
    flex-direction: column;
    gap: 24px;
  }

  .whyVS555__image {
    width: 80%;
    margin: 0 auto;
  }

  .whyVS555__button {
    margin: 0 auto;
  }
}

.journey-VS555 {
  background: #0b0b0b;
  color: #eee;
  padding: 80px 20px;
  
}

.journey-VS555__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.journey-VS555__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #fff;
}

.journey-VS555__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.journey-VS555__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.journey-VS555__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.journey-VS555__card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.journey-VS555__card-text {
  padding: 20px;
  font-size: 0.95rem;
  ;
}

.journey-VS555__cta {
  text-align: center;
  margin-top: 50px;
}

.journey-VS555__main-img {
  max-width: 360px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.journey-VS555__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 16px 40px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.journey-VS555__btn:hover {
  transform: scale(1.05);
}

.journey-VS555__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.journey-VS555__btn:hover::after {
  opacity: 1;
  animation: shine-journey 1s forwards;
}

@keyframes shine-journey {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* Mobile: center everything and stack cards */
@media (max-width: 767px) {
  .journey-VS555__inner {
    text-align: center;
  }

  .journey-VS555__cards {
    grid-template-columns: 1fr;
  }
}

.launch-VS555 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 11%, rgba(0, 0, 0, 1) 59%, rgba(250, 158, 0, 1) 100%);;
  color: #f2f2f2;
  padding: 80px 20px;
  
}

.launch-VS555__wrapper {
  max-width: 1080px;
  margin: 0 auto
}

.launch-VS555__heading {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #fff
}

/* -------- Cards -------- */
.launch-VS555__card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid #fff;
  padding: 28px;
  margin-bottom: 36px;
  backdrop-filter: blur(4px);
  transition: transform .3s, box-shadow .3s
}

.launch-VS555__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .7)
}

.launch-VS555__img {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .6)
}

.launch-VS555__text {
  font-size: .97rem;
}

/* -------- Captions -------- */
.launch-VS555__caption {
  font-size: 1.2rem;
  color: #e03e5b;
  margin: 0;
  text-align: center;
  padding: 0;
  background-color: white;
  padding: 10px;
  font-size: 24px;

}

/* -------- Links -------- */
.launch-VS555__link {
  color: #ff6ea0;
  text-decoration: none;
  border-bottom: 1px dashed #ff6ea0;
  transition: color .3s, border-color .3s
}

.launch-VS555__link:hover {
  color: #ffa1c1;
  border-color: #ffa1c1
}

/* -------- Extras list -------- */
.launch-VS555__extras {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0 60px 0;
  padding: 0;
  font-size: .9rem;
  color: #aaa
}

.launch-VS555__extras li {
  white-space: nowrap
}

/* -------- CTA -------- */
.launch-VS555__cta {
  text-align: center
}

.launch-VS555__cta-img {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .6);
  margin-bottom: 24px
}

.launch-VS555__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 46px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.launch-VS555__btn:hover {
  transform: scale(1.06)
}

.launch-VS555__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 72%);
  opacity: 0;
  transition: opacity .6s
}

.launch-VS555__btn:hover::after {
  opacity: 1;
  animation: launch-shine 1.2s forwards
}

@keyframes launch-shine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* -------- Responsive (<768 px) -------- */
@media(max-width:767px) {
  .launch-VS555__card {
    flex-direction: column;
    text-align: center;
    align-items: center
  }

  .launch-VS555__caption {
    text-align: center
  }

  .launch-VS555__extras {
    flex-direction: column;
    gap: 12px
  }
}

.discover-VS555 {
  background: #0a0a0b;
  color: #f1f1f1;
  padding: 80px 20px;
  
}

.discover-VS555__wrap {
  max-width: 1120px;
  margin: 0 auto
}

.discover-VS555__heading {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 40px;
  color: #fff
}

.discover-VS555__intro {
  font-size: 1.05rem;
  margin-bottom: 50px;
  text-align: center
}

/* Link styling */
.discover-VS555__link {
  color: #ff67a3;
  text-decoration: none;
  border-bottom: 1px dashed #ff67a3;
  transition: color .3s, border-color .3s
}

.discover-VS555__link:hover {
  color: #ff94c1;
  border-color: #ff94c1
}

/* Grid */
.discover-VS555__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 50px
}

.discover-VS555__card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid #242424;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s
}

.discover-VS555__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .65)
}

.discover-VS555__img {
  width: 100%;
  object-fit: cover
}

.discover-VS555__text {
  padding: 22px;
  font-size: .95rem;
}

/* Stats bar */
.discover-VS555__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: .9rem;
  color: #aaa;
  margin-bottom: 60px;
  flex-wrap: wrap
}

.discover-VS555__stats span {
  white-space: nowrap
}

/* CTA */
.discover-VS555__cta {
  text-align: center
}

.discover-VS555__cta-img {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .7);
  margin-bottom: 24px
}

.discover-VS555__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 46px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.discover-VS555__btn:hover {
  transform: scale(1.06)
}

.discover-VS555__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 72%);
  opacity: 0;
  transition: opacity .6s
}

.discover-VS555__btn:hover::after {
  opacity: 1;
  animation: discover-shine 1.1s forwards
}

@keyframes discover-shine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* Mobile ≤ 768 px */
@media(max-width:767px) {
  .discover-VS555__intro {
    text-align: center
  }

  .discover-VS555__grid {
    grid-template-columns: 1fr
  }

  .discover-VS555__stats {
    flex-direction: column;
    gap: 14px;
    text-align: center
  }
}

.secure-VS555 {
  background:  linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 82%);
  color: #f4f4f4;
  padding: 80px 20px;
  
}

.secure-VS555__wrap {
  max-width: 1150px;
  margin: 0 auto
}

.secure-VS555__heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #fff
}

/* Timeline */
.secure-VS555__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.secure-VS555__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #27282f;
  border-radius: 10px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s
}

.secure-VS555__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.7)
}

.secure-VS555__icon {
  position: absolute;
  top: -22px;
  left: 43%;
  background: #e03e5b;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6)
}

.secure-VS555__card-title {
  margin-top: 30px;
  text-align: center;
  font-size: 1.25rem;
  color: #fff
}

.secure-VS555__text {
  font-size: 0.95rem;
}

/* Links */
.secure-VS555__link {
  color: #ff6fa6;
  text-decoration: none;
  border-bottom: 1px dashed #ff6fa6;
  transition: color 0.3s, border-color 0.3s
}

.secure-VS555__link:hover {
  color: #ffa1c9;
  border-color: #ffa1c9
}

/* Quick facts */
.secure-VS555__facts {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 0.9rem;
  color: #aaa;
  margin: 60px 0 50px;
  flex-wrap: wrap
}

.secure-VS555__facts span {
  white-space: nowrap
}

/* CTA */
.secure-VS555__cta {
  text-align: center
}

.secure-VS555__img {
  max-width: 380px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.7);
  margin-bottom: 24px
}

.secure-VS555__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 46px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s
}

.secure-VS555__btn:hover {
  transform: scale(1.06)
}

.secure-VS555__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s
}

.secure-VS555__btn:hover::after {
  opacity: 1;
  animation: secure-shine 1.1s forwards
}

@keyframes secure-shine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* Mobile ≤768 */
@media (max-width:767px) {
  .secure-VS555__timeline {
    grid-template-columns: 1fr
  }

  .secure-VS555__facts {
    flex-direction: column;
    gap: 14px
  }

  .secure-VS555__wrap {
    text-align: center
  }
}

.faq399 {
  background: #0d0e14;
  color: #f0f0f0;
  padding: 80px 20px;
  
}

.faq399__container {
  max-width: 1100px;
  margin: 0 auto
}

.faq399__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
  color: #fff
}

.faq399__desc {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 50px
}

/* Accordion */
.faq399__accordion {
  border-top: 1px solid #2a2b31
}

.faq399__item {
  border-bottom: 1px solid #2a2b31
}

.faq399__question {
  width: 100%;
  background: none;
  border: none;
  color: #e03e5b;
  font-size: 1.05rem;
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background .3s
}

.faq399__question:hover {
  background: rgba(255, 255, 255, 0.03)
}

.faq399__question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: transform .3s
}

.faq399__question.open::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg)
}

.faq399__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 16px;
  margin-bottom: 16px;
}

.faq399__answer p {
  margin: 16px 0;
  font-size: .95rem;
}

/* CTA */
.faq399__cta {
  text-align: center;
  margin-top: 60px
}

.faq399__img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.65);
  margin-bottom: 24px
}

.faq399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 46px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.faq399__btn:hover {
  transform: scale(1.06)
}

.faq399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 72%);
  opacity: 0;
  transition: opacity .6s
}

.faq399__btn:hover::after {
  opacity: 1;
  animation: faqshine 1.1s forwards
}

@keyframes faqshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* Mobile: center everything */
@media(max-width:767px) {
  .faq399__container {
    text-align: center
  }

  .faq399__question {
    text-align: center;
    padding-right: 50px
  }

  .faq399__question::after {
    right: 20px
  }
}

.hero399 {
  position: relative;
  color: #f2f2f2;
  padding: 120px 20px 100px;
  overflow: hidden;
  
}

.hero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  transform: scale(1.05);
  filter: brightness(0.55);
  z-index: -2;
}

.hero399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 70%);
  z-index: -1;
}

.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%;
}

.hero399__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero399__content {
  flex: 1 1 50%;
}

.hero399__visual {
  flex: 1 1 50%;
}

/* ===== Text ===== */
.hero399__title {
  font-size: 2.8rem;
  ;
  margin-bottom: 24px;
  color: #fff;
}

.hero399__text {
  font-size: 1.05rem;
  ;
  margin-bottom: 42px;
}

/* ===== Links ===== */
.hero399__link {
  color: #ff789d;
  text-decoration: none;
  border-bottom: 1px dashed #ff789d;
  transition: color .3s, border-color .3s;
}

.hero399__link:hover {
  color: #ffa6bd;
  border-color: #ffa6bd;
}

/* ===== Buttons ===== */
.hero399__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Center on desktop as requested */
  gap: 26px;
}

.hero399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 46px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s ease;
}

.hero399__btn:hover {
  transform: scale(1.06);
}

.hero399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 72%);
  opacity: 0;
  transition: opacity .6s;
}

.hero399__btn:hover::after {
  opacity: 1;
  animation: hero399-shine 1.2s forwards;
}

@keyframes hero399-shine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.hero399__btn--primary {
  background: #e03e5b;
  color: #fff;
}

.hero399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #e03e5b;
}

/* ===== Visual ===== */
.hero399__img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
  transform: rotate(-3deg);
}

/* ===== Responsive (<= 768px) ===== */
@media (max-width: 767px) {
  .hero399__container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero399__title {
    font-size: 2rem;
  }

  .hero399__img {
    max-width: 320px;
    transform: none;
  }
}

.heart399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  position: relative;
  padding: 100px 20px 90px;
  color: #f5f5f5;
  
  overflow: hidden;
}

.heart399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.15);
  z-index: -2;
}

.heart399__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(224, 62, 91, .15), rgba(0, 0, 0, .8));
  z-index: -1;
}

/* ---------- Layout ---------- */
.heart399__wrap {
  max-width: 1200px;
  margin: 0 auto;

}

.heart399__content {
  flex: 1 1 55%
}

.heart399__visual {
  flex: 1 1 45%
}

.heart399__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .7);
  transform: rotate(-2deg);
}

/* ---------- Text & Links ---------- */
.heart399__heading {
  font-size: 2.4rem;
  margin-bottom: 26px;
  color: #fff
}

.heart399__lead {
  font-size: 1.05rem;

  margin-bottom: 34px
}

.heart399__link {
  color: #ff7fa7;
  text-decoration: none;
  border-bottom: 1px dashed #ff7fa7;
  transition: color .3s, border-color .3s;
}

.heart399__link:hover {
  color: #ffaad0;
  border-color: #ffaad0
}

/* ---------- Blocks ---------- */
.heart399__blocks {
  display: flex;
  gap: 30px
}

.heart399__block {
  background: rgb(106 85 85 / 55%);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #27272f
}

.heart399__block-title {
  font-size: 1.15rem;
  color: #e03e5b;
  margin-bottom: 10px
}

.heart399__text {
  font-size: .95rem;
}

/* ---------- Stats strip ---------- */
.heart399__stats {
  list-style: none;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin: 38px 0 46px;
  padding: 0;
  font-size: .9rem;
  color: #bbb;
  justify-content: center;
}

.heart399__stats li {
  white-space: nowrap
}

/* ---------- Button ---------- */
.heart399__actions {
  text-align: center
}

.heart399__btn {
  display: inline-block;
  padding: 18px 52px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.heart399__btn--primary {
  background: #e03e5b;
  color: #fff
}

.heart399__btn:hover {
  transform: scale(1.06)
}

.heart399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.heart399__btn:hover::after {
  opacity: 1;
  animation: heartshine 1.1s forwards
}

@keyframes heartshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ---------- Mobile (≤768 px) ---------- */
@media(max-width:767px) {

  .heart399__blocks {
    display: flex;
    flex-direction: column;
  }

  .heart399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .heart399__heading {
    font-size: 2rem
  }

  .heart399__img {
    max-width: 320px;
    margin: 0 auto;
    transform: none
  }

  .heart399__stats {
    flex-direction: column;
    gap: 14px
  }
}

.loyal399 {
  background: #0f1016;
  color: #f1f1f1;
  padding: 90px 20px;
}

.loyal399__container {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center
}

.loyal399__content {
  flex: 1 1 55%
}

.loyal399__visual {
  flex: 1 1 45%
}

/* ===== Headings & text ===== */
.loyal399__heading {
  font-size: 2.3rem;
  margin-bottom: 26px;
  color: #fff
}

.loyal399__lead {
  font-size: 1.05rem;

  margin-bottom: 38px
}

.loyal399__link {
  color: #ff78a4;
  text-decoration: none;
  border-bottom: 1px dashed #ff78a4;
  transition: .3s
}

.loyal399__link:hover {
  color: #ffa6c5;
  border-color: #ffa6c5
}

/* ===== Tier ladder ===== */
.loyal399__tiers {
  list-style: none;
  margin: 0 0 46px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.loyal399__tier {
  position: relative;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid #282a31;
  overflow: hidden
}

.loyal399__tier-name {
  font-weight: 600;
  font-size: 1rem;
  color: #e03e5b
}

.loyal399__tier-benefit {
  font-size: .9rem;
  color: #ddd;
  display: block;
  margin-top: 2px
}

/* Subtle animated glow per tier */
.loyal399__tier::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(224, 62, 91, .25) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .6s
}

.loyal399__tier:hover::after {
  opacity: 1
}

/* ===== Image ===== */
.loyal399__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .7)
}

/* ===== Button ===== */
.loyal399__actions {
  text-align: center
}

.loyal399__btn {
  background: #e03e5b;
  color: #fff;
  padding: 18px 52px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: transform .3s
}

.loyal399__btn:hover {
  transform: scale(1.06)
}

.loyal399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s
}

.loyal399__btn:hover::after {
  opacity: 1;
  animation: loyalshine 1.1s forwards
}

@keyframes loyalshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Mobile (≤768 px) ===== */
@media (max-width:767px) {
  .loyal399__container {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .loyal399__heading {
    font-size: 2rem
  }

  .loyal399__img {
    max-width: 320px;
    margin: auto
  }
}

.pay399 {
  background: #101119;
  color: #f3f3f3;
  padding: 90px 20px;
}

.pay399__container {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center
}

.pay399__content {
  flex: 1 1 55%
}

.pay399__visual {
  flex: 1 1 45%
}

/* ===== Text & link ===== */
.pay399__heading {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #fff
}

.pay399__lead {
  font-size: 1.05rem;
  margin-bottom: 34px
}

.pay399__link {
  color: #ff7fa6;
  text-decoration: none;
  border-bottom: 1px dashed #ff7fa6;
  transition: .3s
}

.pay399__link:hover {
  color: #ffa7c8;
  border-color: #ffa7c8
}

/* ===== Payment logos row ===== */
.pay399__methods {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0 0 32px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.pay399__methods img {
  width: 56px;
  height: auto;
  opacity: .85;
  transition: .3s
}

.pay399__methods img:hover {
  opacity: 1;
  transform: translateY(-4px)
}

/* ===== Stats ===== */
.pay399__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #bbb;
  margin-bottom: 42px
}

.pay399__stats span {
  white-space: nowrap
}

/* ===== Image ===== */
.pay399__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .7)
}

/* ===== Button ===== */
.pay399__actions {
  text-align: center
}

.pay399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 52px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.pay399__btn:hover {
  transform: scale(1.06)
}

.pay399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s
}

.pay399__btn:hover::after {
  opacity: 1;
  animation: payshine 1.1s forwards
}

@keyframes payshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Mobile ≤ 768 px ===== */
@media(max-width:767px) {
  .pay399__container {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .pay399__heading {
    font-size: 2rem
  }

  .pay399__methods {
    justify-content: center
  }

  .pay399__img {
    max-width: 320px;
    margin: auto
  }
}

.care399 {
  background: #f4f7fb;
  /* lighter background requested */
  color: #20232a;
  padding: 90px 20px;

}

.care399__container {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===== Visual ===== */
.care399__visual {
  flex: 1 1 45%
}

.care399__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transform: rotate(2deg);
}

/* ===== Content ===== */
.care399__content {
  flex: 1 1 55%
}

.care399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #e03e5b;
}

.care399__text {
  font-size: 1.05rem;

  margin-bottom: 34px;
}

.care399__link {
  color: #ff5f90;
  text-decoration: none;
  border-bottom: 1px dashed #ff5f90;
  transition: .3s;
}

.care399__link:hover {
  color: #ff94b4;
  border-color: #ff94b4;
}

/* ===== Feature pills ===== */
.care399__pills {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 46px;
  padding: 0;
}

.care399__pills li {
  background: #fff;
  color: #333;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

/* ===== Button ===== */
.care399__actions {
  text-align: center
}

.care399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 52px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.care399__btn:hover {
  transform: scale(1.06)
}

.care399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.care399__btn:hover::after {
  opacity: 1;
  animation: careshine 1.1s forwards;
}

@keyframes careshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Mobile ≤768 ===== */
@media(max-width:767px) {
  .care399__container {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .care399__heading {
    font-size: 2rem
  }

  .care399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }

  .care399__pills {
    justify-content: center
  }
}

.support399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 60px 20px;
  
  color: #222
}

.support399__hero {
  width: 100%;
  text-align: center;
  margin-bottom: -60px
}

.support399__hero-img {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

/* ===== Card ===== */
.support399__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
  padding: 80px 40px 60px;
  margin: 0 auto;
  max-width: 860px;
  position: relative
}

.support399__title {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #e03e5b;
  text-align: center
}

.support399__text {
  font-size: 1.05rem;
  margin-bottom: 36px;
  text-align: center
}

.support399__link {
  color: #ff5f8b;
  text-decoration: none;
  border-bottom: 1px dashed #ff5f8b;
  transition: .3s
}

.support399__link:hover {
  color: #ff90b0;
  border-color: #ff90b0
}

/* ===== Chips ===== */
.support399__chips {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 40px;
  padding: 0
}

.support399__chips li {
  background: #f0f3fa;
  color: #333;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .07)
}

.support399__chips i {
  color: #e03e5b
}

/* ===== Button ===== */
.support399__actions {
  text-align: center
}

.support399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 54px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.support399__btn:hover {
  transform: scale(1.06)
}

.support399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s
}

.support399__btn:hover::after {
  opacity: 1;
  animation: supportshine 1.1s forwards
}

@keyframes supportshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Mobile ≤768px ===== */
@media(max-width:767px) {
  .support399__card {
    padding: 100px 24px 60px;
    text-align: center
  }

  .support399__title {
    font-size: 1.75rem
  }
}

.slots399 {
  position: relative;
  padding: 120px 20px 100px;
  color: #f5f5f5;

  overflow: hidden;
}

.slots399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -2;
}

.slots399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .85) 15%, rgba(0, 0, 0, .4) 70%);
  z-index: -1;
}

/* ===== Layout ===== */
.slots399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.slots399__content {
  text-align: center;
}


/* ===== Text & links ===== */
.slots399__title {
  font-size: 2.6rem;

  margin-bottom: 24px;
  color: #fff
}

.slots399__text {
  font-size: 1.06rem;

  margin-bottom: 38px
}

.slots399__link {
  color: #ff6fa6;
  text-decoration: none;
  border-bottom: 1px dashed #ff6fa6;
  transition: color .3s, border-color .3s;
}

.slots399__link:hover {
  color: #ff9dc5;
  border-color: #ff9dc5
}

/* ===== Beats ===== */
.slots399__beats {
  list-style: none;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 46px;
  padding: 0;
  font-size: .9rem;
  color: #ccc
}

.slots399__beats li {
  white-space: nowrap
}

/* ===== Buttons ===== */
.slots399__actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center
}

.slots399__btn {
  display: inline-block;
  padding: 18px 54px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.slots399__btn:hover {
  transform: scale(1.07)
}

.slots399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.slots399__btn:hover::after {
  opacity: 1;
  animation: slotshine 1.2s forwards
}

@keyframes slotshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

.slots399__btn--primary {
  background: #e03e5b;
  color: #fff
}

.slots399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #e03e5b;
}

/* ===== Visual img ===== */
.slots399__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .65);
  transform: rotate(-2.5deg);
}

/* ===== Mobile ≤768 ===== */
@media (max-width:767px) {
  .slots399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .slots399__title {
    font-size: 2.1rem
  }

  .slots399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.spinzone399 {
  background: #f6f9ff;
  /* light backdrop (no image) */
  color: #1c1e24;
  padding: 60px 20px 90px;

}

.spinzone399__hero {
  text-align: center;
  margin-bottom: -70px
}

.spinzone399__hero-img {
  width: 100%;
  max-width: 720px;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

/* ---------- Card ---------- */
.spinzone399__card {
  background: #fff;
  border-radius: 18px;
  max-width: 930px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
  position: relative;
}

.spinzone399__title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #e03e5b;
  text-align: center;
}

.spinzone399__subtitle {
  font-size: 1.2rem;
  margin: 38px 0 14px;
  color: #e03e5b;
  text-align: center;
}

.spinzone399__text {
  font-size: 1.05rem;

  margin-bottom: 16px;
}

.spinzone399__link {
  color: #ff5f92;
  text-decoration: none;
  border-bottom: 1px dashed #ff5f92;
  transition: color .3s, border-color .3s;
}

.spinzone399__link:hover {
  color: #ff91b6;
  border-color: #ff91b6;
}

/* ---------- Chips ---------- */
.spinzone399__chips {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 28px 0 46px;
  padding: 0;
}

.spinzone399__chips li {
  background: #eef2ff;
  color: #333;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .88rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06);
}

/* ---------- Button ---------- */
.spinzone399__actions {
  text-align: center
}

.spinzone399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.spinzone399__btn:hover {
  transform: scale(1.06)
}

.spinzone399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.spinzone399__btn:hover::after {
  opacity: 1;
  animation: spinshine 1.1s forwards;
}

@keyframes spinshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ---------- Mobile ≤768 ---------- */
@media(max-width:767px) {
  .spinzone399__card {
    padding: 120px 24px 60px;
    text-align: center
  }

  .spinzone399__title {
    font-size: 1.9rem
  }

  .spinzone399__hero-img {
    max-width: 340px
  }

  .spinzone399__chips {
    justify-content: center
  }
}

.features399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  /* dark backdrop */
  color: #e7e9ee;
  padding: 90px 20px;

}

.features399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ---------- Visual ---------- */
.features399__visual {
  flex: 1 1 43%
}

.features399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .55);
}

/* ---------- Content ---------- */
.features399__content {
  flex: 1 1 57%
}

.features399__heading {
  font-size: 2.35rem;
  margin-bottom: 24px;
  color: #ff4f78;
}

.features399__subtitle {
  font-size: 1.2rem;
  margin: 40px 0 14px;
  color: #ff4f78;
}

.features399__text {
  font-size: 1.05rem;

  margin-bottom: 18px;
}

.features399__link {
  color: #ff77a2;
  text-decoration: none;
  border-bottom: 1px dashed #ff77a2;
  transition: .3s;
}

.features399__link:hover {
  color: #ff9ec0;
  border-color: #ff9ec0;
}

/* ---------- Filter chips ---------- */
.features399__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 50px;
}

.features399__filter {
  background: #1d1f27;
  color: #ddd;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: .85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  cursor: default;
}

/* ---------- Button ---------- */
.features399__actions {
  text-align: center
}

.features399__btn {
  display: inline-block;
  background: #ff4f78;
  color: #fff;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.features399__btn:hover {
  transform: scale(1.07)
}

.features399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.features399__btn:hover::after {
  opacity: 1;
  animation: featshine 1.1s forwards;
}

@keyframes featshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ---------- Mobile ≤768 ---------- */
@media(max-width:767px) {
  .features399__wrap {
    flex-direction: column;
    gap: 50px;
    text-align: center
  }

  .features399__heading {
    font-size: 2rem
  }

  .features399__img {
    max-width: 340px;
    margin: auto
  }

  .features399__filters {
    justify-content: center
  }
}

.jackpot399 {
  position: relative;
  background: #0a0b12;
  color: #f4f4f4;
  padding: 100px 20px;
  overflow: hidden;

}

.jackpot399__stripe {
  position: absolute;
  top: -60px;
  left: -10%;
  width: 120%;
  height: 220px;
  background: linear-gradient(135deg, transparent 10%, #e03e5b 60%, transparent 90%);
  opacity: .12;
  transform-origin: left top;
}

.jackpot399__stripe--one {
  transform: skewY(-8deg) translateY(0)
}

.jackpot399__stripe--two {
  transform: skewY(-8deg) translateY(120px)
}

/* ===== Layout ===== */
.jackpot399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.jackpot399__info {
  flex: 1 1 50%;
  text-align: center;
}

.jackpot399__visual {
  flex: 1 1 50%
}

/* ===== Text & link ===== */
.jackpot399__heading {
  font-size: 2.4rem;
  margin-bottom: 22px;
  color: #fff
}

.jackpot399__text {
  font-size: 1.05rem;

  margin-bottom: 34px
}

.jackpot399__link {
  color: #ff79a1;
  text-decoration: none;
  border-bottom: 1px dashed #ff79a1;
  transition: .3s;
}

.jackpot399__link:hover {
  color: #ffa2c0;
  border-color: #ffa2c0
}

/* ===== Live counter ===== */
.jackpot399__live {
  margin-bottom: 46px
}

.jackpot399__counter {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1d1e26;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  margin-bottom: 18px;
  color: #ffd04f;
}

.jackpot399__winners ul {
  margin: 6px 0 0;
  list-style: none;
  padding-left: 18px;
  font-size: .9rem;
  color: #ccc
}

/* ===== Button ===== */
.jackpot399__actions {
  text-align: center
}

.jackpot399__btn {
  display: inline-block;
  background: #e03e5b;
  color: #fff;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.jackpot399__btn:hover {
  transform: scale(1.07)
}

.jackpot399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.jackpot399__btn:hover::after {
  opacity: 1;
  animation: jp_shine 1.1s forwards
}

@keyframes jp_shine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Visual image ===== */
.jackpot399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .6);
  transform: rotate(-3deg);
}

/* ===== Mobile ≤768 ===== */
@media(max-width:767px) {
  .jackpot399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .jackpot399__heading {
    font-size: 2rem
  }

  .jackpot399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.drops399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  color: #fff;
  padding: 95px 20px;
  
}

.drops399__wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.drops399__content {
  flex: 1 1 56%;
}

.drops399__visual {
  flex: 1 1 44%;
}

.drops399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  text-align: center;
  color: #ffcf5e;
}

.drops399__text {
  font-size: 1.09rem;

  text-align: center;
  margin-bottom: 38px;
}

/* --- Feature grid --- */
.drops399__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}

.drops399__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  padding: 22px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  border: 1.5px solid #232749;
}

.drops399__icon {
  font-size: 2rem;
  margin-top: 2px;
}

/* --- Button --- */
.drops399__actions {
  text-align: center;
}

.drops399__btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffb142 60%, #e03e5b 100%);
  color: #fff;
  padding: 18px 54px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
  box-shadow: 0 8px 20px rgba(224, 62, 91, 0.18);
}

.drops399__btn:hover {
  transform: scale(1.07);
}

.drops399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.drops399__btn:hover::after {
  opacity: 1;
  animation: dropshine 1.1s forwards;
}

@keyframes dropshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* --- Visual --- */
.drops399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

/* --- Responsive ≤768px --- */
@media (max-width:767px) {
  .drops399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .drops399__content {
    order: 2;
  }

  .drops399__visual {
    order: 1;
  }

  .drops399__heading {
    font-size: 1.7rem;
  }

  .drops399__grid {
    grid-template-columns: 1fr;
  }

  .drops399__img {
    max-width: 320px;
    margin: 0 auto;
  }
}

.slotpro399 {
  
  padding: 90px 20px;

}

.slotpro399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.slotpro399__info {
  flex: 1 1 55%
}

.slotpro399__visual {
  flex: 1 1 45%
}

/* ========= Headings / Text ========= */
.slotpro399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #000000;
}

.slotpro399__text {
  font-size: 1.06rem;
  margin-bottom: 42px;
}

.slotpro399__link {
  color: #006caf;
  text-decoration: none;
  border-bottom: 1px dashed #005c95;
  transition: .3s;
}

.slotpro399__link:hover {
  color: #00385b;
  border-color: #005991;
}

/* ========= Steps / Vertical roadmap ========= */
.slotpro399__steps {
  border-left: 3px solid #fbae17;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 46px;
}

.slotpro399__step {
  position: relative;
}

.slotpro399__flag {
  position: absolute;
  left: -46px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fbae17;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

.slotpro399__step strong {
  display: block;
  margin-bottom: 6px;
  
}

.slotpro399__step p {
  margin: 0;
  font-size: .92rem;
  
}

/* ========= CTA Button ========= */
.slotpro399__actions {
  text-align: center
}

.slotpro399__btn {
  background: #fbae17;
  color: #000000;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.slotpro399__btn:hover {
  transform: scale(1.07)
}

.slotpro399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.slotpro399__btn:hover::after {
  opacity: 1;
  animation: slotproshine 1.1s forwards;
}

@keyframes slotproshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ========= Image ========= */
.slotpro399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .65);
  transform: rotate(3deg);
}

/* ========= Responsive ≤768px ========= */
@media(max-width:767px) {
  .slotpro399__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px
  }

  .slotpro399__heading {
    font-size: 2rem
  }

  .slotpro399__steps {
    border: none;
    padding: 0;
    align-items: center
  }

  .slotpro399__flag {
    left: 50%;
    transform: translateX(-50%);
    top: -23px
  }

  .slotpro399__step {
    padding-top: 46px
  }

  .slotpro399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.gameshero399 {
  position: relative;
  padding: 120px 20px 100px;
  color: #f7faff;

  overflow: hidden;
}

.gameshero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -3;
}

.gameshero399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, .9) 10%, rgba(0, 0, 0, .4) 70%);
  z-index: -2;
  mix-blend-mode: overlay;
}

/* ---------- Layout ---------- */
.gameshero399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.gameshero399__content {
  text-align: center;
}

.gameshero399__visual {
  flex: 1 1 43%
}

/* ---------- Text & links ---------- */
.gameshero399__title {
  font-size: 2.7rem;

  margin-bottom: 26px;
  color: #fff;
}

.gameshero399__text {
  font-size: 1.08rem;
  margin-bottom: 42px
}

.gameshero399__link {
  color: #fbae17;
  text-decoration: none;
  border-bottom: 1px dashed #fbae17;
  transition: color .3s, border-color .3s;
}

.gameshero399__link:hover {
  color: #90e6ff;
  border-color: #90e6ff
}

/* ---------- Stats ---------- */
.gameshero399__stats {
  display: flex;
  gap: 26px;
  margin-bottom: 50px;
  justify-content: center;
}

.gameshero399__meter {
  position: relative;
  text-align: center;
  font-size: .8rem
}

.gameshero399__meter svg {
  stroke: #fbae17;
  stroke-width: 4;
  fill: transparent;
  stroke-dasharray: 188;
  stroke-dashoffset: 188;
  animation: meterSpin 3s forwards ease-in-out;
}

@keyframes meterSpin {
  to {
    stroke-dashoffset: 0
  }
}

.gameshero399__meter span {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  font-size: .85rem
}

/* ---------- Buttons ---------- */
.gameshero399__actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center
}

.gameshero399__btn {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  padding: 18px 56px;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s ease;
  font-weight: 600;
}

.gameshero399__btn:hover {
  transform: scale(1.07)
}

.gameshero399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.gameshero399__btn:hover::after {
  opacity: 1;
  animation: gameshine 1.2s forwards
}

@keyframes gameshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

.gameshero399__btn--primary {
  background: #fbae17;
  color: #0c0d14
}

.gameshero399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fbae17
}

/* ---------- Visual image ---------- */
.gameshero399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .65);
  transform: rotate(-4deg);
}

/* ---------- Responsive ≤768 ---------- */
@media(max-width:767px) {
  .gameshero399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .gameshero399__title {
    font-size: 2.2rem
  }

  .gameshero399__stats {
    justify-content: center
  }

  .gameshero399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.gamedest399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  color: #e8ecf4;
  padding: 100px 20px;

}

.gamedest399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.gamedest399__visual {
  flex: 1 1 45%
}

.gamedest399__content {
  flex: 1 1 55%
}

/* ===== Visual ===== */
.gamedest399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .55);
  transform: rotate(-4deg);
}

/* ===== Headings & text ===== */
.gamedest399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #fbae17;
}

.gamedest399__subtitle {
  font-size: 1.2rem;
  margin: 38px 0 12px 0;
  color: #fbae17;
}

.gamedest399__text {
  font-size: 1.05rem;

  margin-bottom: 14px;
}

.gamedest399__link {
  color: #7bceff;
  text-decoration: none;
  border-bottom: 1px dashed #7bceff;
  transition: color .3s, border-color .3s;
}

.gamedest399__link:hover {
  color: #a3deff;
  border-color: #a3deff;
}

/* ===== Button ===== */
.gamedest399__actions {
  text-align: center;
  margin-top: 46px
}

.gamedest399__btn {
  display: inline-block;
  background: #fbae17;
  color: #0b1020;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.gamedest399__btn:hover {
  transform: scale(1.07)
}

.gamedest399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.gamedest399__btn:hover::after {
  opacity: 1;
  animation: gamelobbyshine 1.1s forwards;
}

@keyframes gamelobbyshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Responsive ≤768px ===== */
@media(max-width:767px) {
  .gamedest399__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px
  }

  .gamedest399__heading {
    font-size: 2rem
  }

  .gamedest399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.liveinnov399 {
  background: #111217;
  color: #fbae17;
  /* yellow font color */
  padding: 90px 20px;

}

.liveinnov399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: row-reverse;
}

/* ===== Visual ===== */
.liveinnov399__visual {
  flex: 1 1 45%
}

.liveinnov399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .6);
  transform: rotate(4deg);
}

/* ===== Content ===== */
.liveinnov399__content {
  flex: 1 1 55%
}

.liveinnov399__heading {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.liveinnov399__text {
  font-size: 1.1rem;
  margin-bottom: 44px;
}

.liveinnov399__link {
  color: #fff600;
  text-decoration: none;
  border-bottom: 1px dashed #fff600;
  transition: color .3s, border-color .3s;
}

.liveinnov399__link:hover {
  color: #fffc9a;
  border-color: #fffc9a;
}

/* ===== Button ===== */
.liveinnov399__actions {
  text-align: center
}

.liveinnov399__btn {
  display: inline-block;
  background: #fbae17;
  color: #0c0d12;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.liveinnov399__btn:hover {
  transform: scale(1.08)
}

.liveinnov399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.liveinnov399__btn:hover::after {
  opacity: 1;
  animation: liveglow 1.2s forwards;
}

@keyframes liveglow {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

/* ===== Responsive ≤768px ===== */
@media(max-width:767px) {
  .liveinnov399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .liveinnov399__heading {
    font-size: 2rem
  }

  .liveinnov399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }
}

.missions399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  color: #fbae17;
  /* yellow font everywhere */
  padding: 90px 20px;

}

.missions399__hero {
  text-align: center;
  margin-bottom: -60px
}

.missions399__hero-img {
  width: 100%;
  max-width: 720px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

/* ===== Card ===== */
.missions399__card {
  background: #171920;
  border-radius: 16px;
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .25);
  text-align: center;
}

.missions399__heading {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.missions399__text {
  font-size: 1.07rem;
  margin-bottom: 46px;
}

.missions399__link {
  color: #fff600;
  text-decoration: none;
  border-bottom: 2px dotted #fff600;
  transition: .3s;
}

.missions399__link:hover {
  color: #fffacd;
  border-color: #fffacd;
}

/* ===== Progress mock-up ===== */
.missions399__progress {
  background: #22242e;
  border-radius: 12px;
  position: relative;
  height: 14px;
  margin: 0 auto 50px;
  max-width: 420px;
  overflow: hidden;
}

.missions399__bar {
  background: #fbae17;
  height: 100%;
  border-radius: 12px 0 0 12px;
}

.missions399__label {
  display: block;
  margin-top: 12px;
  font-size: .9rem;
}

/* ===== Button ===== */
.missions399__actions {}

.missions399__btn {
  display: inline-block;
  background: #fbae17;
  color: #0e0f14;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.missions399__btn:hover {
  transform: scale(1.07)
}

.missions399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .24) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.missions399__btn:hover::after {
  opacity: 1;
  animation: missionshine 1.1s forwards;
}

@keyframes missionshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== Responsive ≤768px ===== */
@media(max-width:767px) {
  .missions399__card {
    padding: 120px 24px 60px
  }

  .missions399__heading {
    font-size: 1.9rem
  }

  .missions399__hero-img {
    max-width: 340px
  }
}

:root {
  --trust-yellow: #fbae17;
  --trust-dark: #0a0b11;
}

/* ===== Wrapper ===== */
.trust399 {
  background: var(--trust-dark);
  color: var(--trust-yellow);
  padding: 60px 20px 70px;

  position: relative;
  overflow: hidden;
}

/* ===== Slanted band ===== */
.trust399__band {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  transform: skewY(-7deg);
  transform-origin: 0 0;
  z-index: 0;
}

/* ===== Layout ===== */
.trust399__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* ===== Image ===== */
.trust399__visual {
  flex: 1 1 46%
}

.trust399__img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .6);
  transform: rotate(5deg);
}

/* ===== Content ===== */
.trust399__content {
  flex: 1 1 54%
}

.trust399__title {
  font-size: 2.55rem;
  margin-bottom: 28px;
}

.trust399__lead {
  font-size: 1.08rem;
  margin-bottom: 38px;
}

.trust399__link {
  color: var(--trust-yellow);
  text-decoration: none;
  border-bottom: 2px dotted var(--trust-yellow);
  transition: .3s;
}

.trust399__link:hover {
  color: #fff8c5;
  border-color: #fff8c5;
}

/* ===== Badges ===== */
.trust399__badges {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: .9rem;
}

/* ===== Button ===== */
.trust399__actions {
  text-align: center
}

.trust399__btn {
  display: inline-block;
  background: var(--trust-yellow);
  color: var(--trust-dark);
  padding: 20px 60px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.trust399__btn:hover {
  transform: scale(1.07)
}

.trust399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.trust399__btn:hover::after {
  opacity: 1;
  animation: trustshine 1.2s forwards;
}

@keyframes trustshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== Responsive ≤768px ===== */
@media(max-width:767px) {
  .trust399__inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .trust399__title {
    font-size: 2.1rem
  }

  .trust399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }
}

:root {
  --bet-accent: #3ac7ff;
  --bet-dark: #06121e;
}

/* ===== Section base ===== */
.bethero399 {
  position: relative;
  padding: 120px 20px 100px;
  color: #f0f6ff;

  overflow: hidden;
}

.bethero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  z-index: -3;
  filter: brightness(.5);
}

.bethero399__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgb(255 58 58 / 25%), transparent 60%), linear-gradient(135deg, rgba(0, 0, 0, .9) 20%, rgba(0, 0, 0, .4) 80%);
  z-index: -2;
}

.bethero399__shell {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===== Content ===== */
.bethero399__content {
  flex: 1 1 58%;
  max-width: 100%;
}

.bethero399__title {
  font-size: 2.8rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;

}

.bethero399__text {
  font-size: 1.08rem;
  margin-bottom: 38px;
  text-align: center;
}

.bethero399__link {
  color: var(--bet-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--bet-accent);
  transition: color .3s, border-color .3s;
}

.bethero399__link:hover {
  color: #8ddcff;
  border-color: #8ddcff;
}

/* ===== Marquee ===== */
.bethero399__marquee {

  white-space: nowrap;

  border-radius: 6px;
  padding: 10px 0;
  margin-bottom: 44px;
  font-size: .9rem;
  animation: betscroll 18s linear infinite;
}

@keyframes betscroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

/* ===== Buttons ===== */
.bethero399__actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.bethero399__btn {
  position: relative;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s ease;
  font-weight: 600;
}

.bethero399__btn:hover {
  transform: scale(1.07)
}

.bethero399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.bethero399__btn:hover::after {
  opacity: 1;
  animation: betshine 1.2s forwards;
}

@keyframes betshine {
  to {
    transform: translate(100%, 100%) rotate(45deg)
  }
}

.bethero399__btn--primary {
  background: #ff3a3a;
  color: #06121e;
}

.bethero399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ff3a3a;
}

/* ===== Visual ===== */
.bethero399__visual {
  flex: 1 1 42%
}

.bethero399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .65);
  transform: rotate(-5deg);
}

/* ===== Mobile ≤768px ===== */
@media(max-width:767px) {
  .bethero399__shell {
    text-align: center;
    gap: 50px;
  }

  .bethero399__title {
    font-size: 2.2rem
  }

  .bethero399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }

  .bethero399__marquee {
    font-size: .8rem
  }
}

/* ===== SECTION: Bet Smart, Bet Bangladeshi (no CSS variables) ===== */

.betsmart399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  color: #e9fdf4;
  padding: 90px 20px;

}

/* ---------- Layout ---------- */
.betsmart399__wrapper {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ---------- Image ---------- */
.betsmart399__visual {
  flex: 1 1 45%;
  position: relative;
}

.betsmart399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .6);
  transform: perspective(800px) rotateY(-7deg);
}

.betsmart399__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #19e28e;
  color: #101115;
  padding: 6px 14px;
  font-weight: 700;
  font-size: .78rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

/* ---------- Content ---------- */
.betsmart399__content {
  flex: 1 1 55%;
}

.betsmart399__heading {
  font-size: 2.35rem;
  margin-bottom: 22px;
  color: #19e28e;
}

.betsmart399__lead {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.betsmart399__sub {
  font-size: 1.15rem;
  margin: 32px 0 10px;
  color: #19e28e;
}

.betsmart399__text {
  font-size: 1.03rem;
  margin-bottom: 6px;
}

.betsmart399__link {
  color: #3cffae;
  text-decoration: none;
  border-bottom: 2px dashed #3cffae;
  transition: color .3s, border-color .3s;
}

.betsmart399__link:hover {
  color: #89ffd1;
  border-color: #89ffd1;
}

/* ---------- Chip bar ---------- */
.betsmart399__chips {
  list-style: none;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px 0 48px;
  padding: 0;
}

.betsmart399__chips li {
  background: #1a1c22;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

/* ---------- CTA ---------- */
.betsmart399__actions {
  text-align: center;
}

.betsmart399__btn {
  display: inline-block;
  background: #19e28e;
  color: #101115;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.betsmart399__btn:hover {
  transform: scale(1.07);
}

.betsmart399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.betsmart399__btn:hover::after {
  opacity: 1;
  animation: bs-glow 1.2s forwards;
}

@keyframes bs-glow {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ---------- Mobile ≤768px ---------- */
@media (max-width:767px) {
  .betsmart399__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .betsmart399__heading {
    font-size: 1.9rem;
  }

  .betsmart399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }

  .betsmart399__chips {
    justify-content: center;
  }
}

.crash399 {
  background: #0d0e14;
  color: #fafafa;
  padding: 90px 20px;

}

/* ===== WRAPPER ===== */
.crash399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ===== CARDS ===== */
.crash399__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.crash399__card {
  background: #13151f;
  border: 1px solid #242836;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  transition: transform .3s;
}

.crash399__card:hover {
  transform: translateY(-6px)
}

.crash399__card-img {
  width: 100%;

  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.crash399__card-title {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #29d2ff;
}

.crash399__card-meta {
  font-size: .8rem;
  color: #c7c7c7;
}

/* ===== CONTENT ===== */
.crash399__content {
  text-align: center;
}

.crash399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #29d2ff;
}

.crash399__lead {
  font-size: 1.05rem;
  margin-bottom: 46px;
}

.crash399__link {
  color: #7be3ff;
  text-decoration: none;
  border-bottom: 1px dashed #7be3ff;
  transition: color .3s, border-color .3s;
}

.crash399__link:hover {
  color: #b4f1ff;
  border-color: #b4f1ff
}

/* ===== BUTTON ===== */
.crash399__actions {
  text-align: center
}

.crash399__btn {
  display: inline-block;
  background: #29d2ff;
  color: #0d0e14;
  padding: 18px 54px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.crash399__btn:hover {
  transform: scale(1.07)
}

.crash399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.crash399__btn:hover::after {
  opacity: 1;
  animation: crashshine 1.15s forwards;
}

@keyframes crashshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== MOBILE ≤768px ===== */
@media (max-width:767px) {
  .crash399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .crash399__cards {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .crash399__heading {
    font-size: 2rem
  }
}

.cashout399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);
  color: #f5faff;
  padding: 90px 20px;

}

/* flex wrapper */
.cashout399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ==== Image ==== */
.cashout399__visual {
  flex: 1 1 45%
}

.cashout399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .55);
  transform: skewX(-4deg);
}

/* ==== Content ==== */
.cashout399__content {
  flex: 1 1 55%
}

.cashout399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #00e0ff;
}

.cashout399__lead {
  font-size: 1.06rem;
  margin-bottom: 42px;
}

.cashout399__link {
  color: #27f0ff;
  text-decoration: none;
  border-bottom: 1px dashed #27f0ff;
  transition: color .3s, border-color .3s;
}

.cashout399__link:hover {
  color: #7ef8ff;
  border-color: #7ef8ff;
}

/* perks row */
.cashout399__perks {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 48px;
  padding: 0;
  font-size: .9rem;
  color: #c7dffa;
}

.cashout399__perks li {
  white-space: nowrap
}

/* ==== Button ==== */
.cashout399__actions {
  text-align: center
}

.cashout399__btn {
  display: inline-block;
  background: #00e0ff;
  color: #09131e;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.cashout399__btn:hover {
  transform: scale(1.07)
}

.cashout399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.cashout399__btn:hover::after {
  opacity: 1;
  animation: cashshine 1.15s forwards;
}

@keyframes cashshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ==== Mobile ≤768px ==== */
@media (max-width:767px) {
  .cashout399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .cashout399__heading {
    font-size: 2rem
  }

  .cashout399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }

  .cashout399__perks {
    justify-content: center
  }
}

.challenges399 {
  background: #08090f;
  color: #f7f7f7;
  padding: 100px 20px;

  position: relative;
  overflow: hidden;
  /* Subtle star backdrop */
  background-image: radial-gradient(ellipse at 10% 10%, rgba(80, 80, 255, .15) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 70%, rgba(255, 80, 200, .12) 0%, transparent 60%);
}

/* ===== Layout ===== */
.challenges399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* ===== Image with neon outline ===== */
.challenges399__visual {
  flex: 1 1 45%;
  position: relative;
}

.challenges399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, .55);
}

.challenges399__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #35ffdf, #753bff) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform: skewX(-6deg);
}

/* ===== Heading with glitch effect ===== */
.challenges399__heading {
  font-size: 2.6rem;
  margin-bottom: 24px;
  position: relative;
  color: #35ffdf;
  text-align: center;
}

.challenges399__heading::after {
  content: attr(data-glitch);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitchTop 2.5s infinite linear;
  color: #ff55ff;
  opacity: .8;
}

.challenges399__heading::before {
  content: attr(data-glitch);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: glitchBot 2.5s infinite linear;
  color: #00e0ff;
  opacity: .8;
}

@keyframes glitchTop {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(2px, -2px)
  }
}

@keyframes glitchBot {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-2px, 2px)
  }
}

/* ===== Text & link ===== */
.challenges399__content {
  flex: 1 1 55%;
}

.challenges399__lead {
  font-size: 1.05rem;
  margin-bottom: 38px;
}

.challenges399__link {
  color: #7bf9ff;
  text-decoration: none;
  border-bottom: 1px dashed #7bf9ff;
  transition: color .3s, border-color .3s;
}

.challenges399__link:hover {
  color: #c3fbff;
  border-color: #c3fbff;
}

/* ===== Leaderboard card ===== */
.challenges399__board {
  background: #121520;
  border: 1px solid #252a3c;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}

.challenges399__board-title {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #35ffdf;
}

.challenges399__board ol {
  margin: 0;
  padding-left: 22px;
  font-size: .9rem;
}

/* ===== Button w/ pulse trail ===== */
.challenges399__actions {
  text-align: center;
}

.challenges399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #08090f;
  background: #35ffdf;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s;
}

.challenges399__btn:hover {
  transform: scale(1.08);
}

.challenges399__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.challenges399__btn:hover::after {
  opacity: 1;
  animation: btnflash 1.1s forwards;
}

@keyframes btnflash {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .challenges399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .challenges399__heading {
    font-size: 2.1rem;
  }

  .challenges399__img {
    max-width: 320px;
    margin: auto;
  }

  .challenges399__visual::before {
    transform: none;
  }
}

.login399 {
  position: relative;
  padding: 120px 20px 100px;
  color: #f5faff;

  overflow: hidden;
}

.login399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -3;
}

.login399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(120 0 0 / 90%) 15%, rgba(0, 0, 0, .35) 80%);
  z-index: -2;
}

.login399__wrap {
  max-width: 960px;
  margin: auto;
  text-align: left;
}

/* ===== Text & links ===== */
.login399__title {
  font-size: 2.8rem;
  margin-bottom: 26px;
  font-weight: 700;
  color: #fff;
}

.login399__text {
  font-size: 1.08rem;
  margin-bottom: 38px;
}

.login399__link {
  color: #ffb347;
  text-decoration: none;
  border-bottom: 1px dashed #ffb347;
  transition: .3s;
}

.login399__link:hover {
  color: #ffd18a;
  border-color: #ffd18a
}

/* ===== Perks ===== */
.login399__perks {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 50px;
  padding: 0;
  font-size: .9rem;
  color: #ccc;
}

.login399__perks li {
  white-space: nowrap
}

/* ===== Buttons ===== */
.login399__actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center
}

.login399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  font-weight: 600;
  transition: transform .3s ease;
}

.login399__btn:hover {
  transform: scale(1.08)
}

.login399__btn::before,
.login399__btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.1);
}

.login399__btn::before {
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, .15);
}

.login399__btn::after {
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, .6);
}

.login399__content {
  text-align: center;
}

.login399__btn:hover::before {
  animation: btnWave .7s forwards
}

.login399__btn:hover::after {
  animation: btnGlow .7s forwards
}

@keyframes btnWave {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1)
  }
}

@keyframes btnGlow {
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4)
  }
}

.login399__btn--primary {
  background: #ffb347;
  color: #0c0d14
}

.login399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ffb347;
}

/* ===== Responsive ≤768px ===== */
@media(max-width:767px) {
  .login399__wrap {
    text-align: center
  }

  .login399__title {
    font-size: 2.2rem
  }

  .login399__perks {
    justify-content: center
  }
}

.startsession399 {
  background: #f7f8fc;
  padding: 90px 20px;

  color: #1b1e28;
}

.startsession399__card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
  display: flex;
  overflow: hidden;
}

/* ===== Visual ===== */
.startsession399__visual {
  flex: 1 1 46%;
  background: #000
}

.startsession399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Body ===== */
.startsession399__body {
  flex: 1 1 54%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column
}

.startsession399__heading {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #ff3636
}

.startsession399__lead {
  font-size: 1.05rem;
  margin-bottom: 32px
}

.startsession399__sub {
  font-size: 1.15rem;
  margin: 22px 0 8px;
  color: #ff3636
}

.startsession399__text {
  font-size: .98rem;
  margin: 0
}

.startsession399__feature {
  background: #f0f2fa;
  border-left: 4px solid #ff3636;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* ===== Chips ===== */
.startsession399__chips {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0 42px;
  padding: 0;
  font-size: .85rem;
  justify-content: center;
  color: #555;
}

.startsession399__chips li {
  background: #fff4ec;
  padding: 8px 16px;
  border-radius: 40px;
}

/* ===== Button ===== */
.startsession399__actions {
  text-align: center;
  margin-top: auto
}

.startsession399__btn {
  display: inline-block;
  background: #ff3636;
  color: #fff;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease;
}

.startsession399__btn:hover {
  transform: scale(1.08)
}

.startsession399__btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.startsession399__btn:hover::before {
  opacity: 1;
  animation: loginWave 1.15s forwards;
}

@keyframes loginWave {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .startsession399__card {
    flex-direction: column;
    text-align: center
  }

  .startsession399__visual {
    order: -1;
    height: 220px
  }

  .startsession399__img {
    object-fit: cover
  }

  .startsession399__body {
    padding: 40px 24px
  }

  .startsession399__heading {
    font-size: 1.9rem
  }

  .startsession399__chips {
    justify-content: center
  }
}

.onthego399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  color: #fff;
  padding: 90px 20px;

}

/* ===== Layout ===== */
.onthego399__wrap {
  max-width: 1080px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===== Visual ===== */
.onthego399__visual {
  flex: 1 1 45%
}

.onthego399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .15);
  transform: rotate(5deg);
}

/* ===== Content ===== */
.onthego399__content {
  flex: 1 1 55%;
  text-align: center;
}

.onthego399__title {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #ffffff;
}

.onthego399__lead {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.onthego399__link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px dashed #2d61ff;
  transition: color .3s, border-color .3s;
}

.onthego399__link:hover {
  color: #6e8cff;
  border-color: #6e8cff;
}

/* ===== Stat chips ===== */
.onthego399__stats {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 48px;
  padding: 0;
  font-size: .9rem;
  color: #444;
}

.onthego399__stats li {
  background: #e6ecff;
  padding: 10px 18px;
  border-radius: 40px;
}

/* ===== Button with ripple ===== */
.onthego399__actions {
  text-align: center
}

.onthego399__btn {
  display: inline-block;
  background: #2d61ff;
  color: #fff;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.onthego399__btn:hover {
  transform: scale(1.08)
}

.onthego399__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.onthego399__btn:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
  transition: 0.6s;
}

/* ===== Mobile ≤768px ===== */
@media(max-width:767px) {
  .onthego399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .onthego399__title {
    font-size: 1.9rem
  }

  .onthego399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }

  .onthego399__stats {
    justify-content: center
  }
}

/* ===== Wrapper & general ===== */
.fastreward399 {
  background: #fafbff;
  padding: 90px 20px;

  color: #1c2030;
}

.fastreward399__wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* ===== Visual stack ===== */
.fastreward399__visual {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center
}

.fastreward399__badge {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  transform: rotate(-6deg);
}

.fastreward399__badge span {
  display: block;
  font-weight: 400;
  font-size: .8rem;
  margin-top: 6px
}

/* individual gradient fills */
.fastreward399__badge--one {
  background: linear-gradient(135deg, #66d1ff, #4d9dff)
}

.fastreward399__badge--two {
  background: linear-gradient(135deg, #ffb86c, #ff9a5c)
}

.fastreward399__badge--three {
  background: linear-gradient(135deg, #52e6a7, #26c485)
}

/* ===== Content card ===== */
.fastreward399__card {
  flex: 1 1 60%;
  background: #fff;
  border-radius: 18px;
  padding: 48px 46px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
}

.fastreward399__heading {
  font-size: 2.3rem;
  margin-bottom: 22px;
  color: #4d9dff
}

.fastreward399__lead {
  font-size: 1.05rem;
  margin-bottom: 40px
}

/* ===== Meter ===== */
.fastreward399__meter {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 20px;
  background: #eef1ff;
  border-radius: 12px;
  margin: 0 auto 50px;
}

.fastreward399__needle {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, #4d9dff, #66d1ff);
  border-radius: 12px;
  animation: meterSlide 2.5s ease-out forwards;
}

@keyframes meterSlide {
  from {
    width: 0
  }

  to {
    width: 42%
  }
}

.fastreward399__label {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: .9rem;
  color: #556;
}

/* ===== Button ===== */
.fastreward399__actions {
  text-align: center
}

.fastreward399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #4d9dff;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s ease;
}

.w70 {
  width: 70%;
}

.fastreward399__btn:hover {
  transform: scale(1.08)
}

.fastreward399__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.fastreward399__btn:hover::after {
  opacity: 1;
  animation: btnPulse 1.2s forwards
}

@keyframes btnPulse {
  to {
    transform: scale(1.4);
    opacity: 0
  }
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .fastreward399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .fastreward399__visual {
    order: -1
  }

  .fastreward399__badge {
    transform: none;
    width: 140px;
    height: 140px
  }

  .fastreward399__card {
    padding: 40px 24px
  }

  .fastreward399__heading {
    font-size: 1.9rem
  }
}

.promologin399 {
  background: #280000;
  color: #e6e8f0;
  padding: 90px 20px;

}

/* ===== Layout ===== */
.promologin399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===== Visual block ===== */
.promologin399__visual {
  flex: 1 1 42%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promologin399__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .6);
}

.promologin399__token {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  animation: tokenSpin 8s linear infinite;
}

.promologin399__token--a {
  background: #ff665a;
  top: -20px;
  left: 50%
}

.promologin399__token--b {
  background: #ffb946;
  bottom: 30px;
  right: 20%
}

.promologin399__token--c {
  background: #3ab9ff;
  top: 40%;
  left: -30px
}

@keyframes tokenSpin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

/* ===== Content block ===== */
.promologin399__content {
  flex: 1 1 58%
}

.promologin399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #ff665a;
}

.promologin399__lead {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ticker */
.promologin399__ticker {
  background: #161923;
  padding: 10px 16px;
  border: 1px solid #272b38;
  border-radius: 8px;
  margin-bottom: 36px;
  font-size: .9rem;
  color: #ffb946;
}

/* perks */
.promologin399__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .88rem;
  color: #b4b7c6;
}

.promologin399__list li {
  white-space: nowrap
}

/* button */
.promologin399__actions {
  text-align: center
}

.promologin399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  color: #0b0d14;
  background: #ff665a;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s;
}

.promologin399__btn:hover {
  transform: scale(1.08)
}

.promologin399__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .6s;
}

.promologin399__btn:hover::after {
  opacity: 1;
  animation: promoFlash 1.2s forwards;
}

@keyframes promoFlash {
  to {
    transform: scale(1.4);
    opacity: 0
  }
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .promologin399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .promologin399__heading {
    font-size: 1.9rem
  }

  .promologin399__img {
    max-width: 320px;
    margin: auto
  }

  .promologin399__list {
    justify-content: center
  }
}

.apphero399 {
  position: relative;
  padding: 130px 20px 110px;
  color: #fdfdfd;

  overflow: hidden;
}

.apphero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -3;
}

/* animated gold dust overlay */
.apphero399__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgb(255 112 112 / 25%) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .12) 0%, transparent 60%), linear-gradient(120deg, rgba(0, 0, 0, .9) 15%, rgba(0, 0, 0, .4) 80%);
  z-index: -2;
}

.apphero399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

.apphero399__content {
  flex: 1 1 55%
}

.apphero399__visual {
  flex: 1 1 45%
}

/* Typography & links */
.apphero399__title {
  font-size: 2.9rem;
  margin-bottom: 26px;
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.apphero399__text {
  font-size: 1.1rem;
  margin-bottom: 46px;
}

.apphero399__link {
  color: #ffdf70;
  text-decoration: none;
  border-bottom: 1px dashed #ffdf70;
  transition: color .3s, border-color .3s;
}

.apphero399__link:hover {
  color: #fff9c8;
  border-color: #fff9c8
}

/* Perks strip */
.apphero399__perks {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 54px;
  padding: 0;
  font-size: .92rem;
  color: #f1f1f1;
}

.apphero399__perks li {
  white-space: nowrap
}

/* Buttons */
.apphero399__actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.apphero399__btn {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: transform .35s ease;
}

.apphero399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.apphero399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.apphero399__btn:hover::after {
  opacity: 1;
  animation: shineGold 1.3s forwards
}

@keyframes shineGold {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.apphero399__btn--primary {
  background: #ff0000;
  color: #232323;
}

.apphero399__btn--secondary {
  background: transparent;
  color: #ff0000;
  border: 2px solid #ff0000;
}

/* Visual phone image */
.apphero399__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
  transform: rotate(-8deg);
}

/* -------- Mobile (≤768px) -------- */
@media (max-width:767px) {
  .apphero399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .apphero399__title {
    font-size: 2.2rem
  }

  .apphero399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }

  .apphero399__perks {
    justify-content: center
  }
}

.mobilehub399 {
  background: #0e1018;
  padding: 90px 20px;

  color: #e4e6ef;
}

.mobilehub399__card {
  max-width: 1180px;
  margin: auto;
  background: #161922;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .35);
  display: flex;
  overflow: hidden;
}

/* -------- Visual -------- */
.mobilehub399__visual {
  flex: 1 1 44%;
  background: #000
}

.mobilehub399__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

/* -------- Content -------- */
.mobilehub399__content {
  flex: 1 1 56%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column
}

.mobilehub399__heading {
  font-size: 2.35rem;
  margin-bottom: 22px;
  color: #ff9837;
}

.mobilehub399__lead {
  font-size: 1.07rem;
  margin-bottom: 34px;
}

.mobilehub399__sub {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: #ff9837;
}

.mobilehub399__text {
  font-size: .98rem;
  margin: 0
}

.mobilehub399__feature {
  background: #1f2231;
  border-left: 4px solid #ff9837;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.mobilehub399__link {
  color: #ffa961;
  text-decoration: none;
  border-bottom: 1px dashed #ffa961;
  transition: .3s;
}

.mobilehub399__link:hover {
  color: #ffd0a3;
  border-color: #ffd0a3;
}

/* -------- Chips -------- */
.mobilehub399__chips {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 46px;
  padding: 0;
  font-size: .85rem;
  color: #b8bbca;
}

.mobilehub399__chips li {
  background: #212535;
  padding: 10px 18px;
  border-radius: 40px;
}

/* -------- Button -------- */
.mobilehub399__actions {
  text-align: center;
  margin-top: auto
}

.mobilehub399__btn {
  display: inline-block;
  background: #ff9837;
  color: #0e1018;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease;
}

.mobilehub399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.mobilehub399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.mobilehub399__btn:hover::after {
  opacity: 1;
  animation: hubshine 1.15s forwards
}

@keyframes hubshine {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* -------- Mobile ≤768px -------- */
@media (max-width:767px) {
  .mobilehub399__card {
    flex-direction: column;
    text-align: center
  }

  .mobilehub399__visual {
    height: 220px
  }

  .mobilehub399__img {
    transform: none
  }

  .mobilehub399__content {
    padding: 40px 24px
  }

  .mobilehub399__heading {
    font-size: 1.9rem
  }

  .mobilehub399__chips {
    justify-content: center
  }
}

.payment399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;

  color: #e9ecf4;
}

.payment399__card {
  max-width: 1100px;
  margin: auto;
  background: #151720;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .4);
}

/* ----- Visual ----- */
.payment399__visual {
  flex: 1 1 42%;
  background: #000
}

.payment399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* ----- Content ----- */
.payment399__content {
  flex: 1 1 58%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column
}

.payment399__heading {
  font-size: 2.3rem;
  margin-bottom: 22px;
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment399__lead {
  font-size: 1.05rem;
  margin-bottom: 34px
}

/* payment icons row */
.payment399__methods {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 44px;
  padding: 0;
  align-items: center;
}

.payment399__methods img {
  width: 60px;
  height: auto;

  opacity: .85;
  transition: opacity .3s, transform .3s;
}

.payment399__methods img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* ----- Button with glow ----- */
.payment399__actions {
  text-align: center;
  margin-top: auto
}

.payment399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  background: #fff;
  color: #0d0e14;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.payment399__btn:hover {
  transform: scale(1.08)
}

.payment399__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.payment399__btn:hover::after {
  opacity: 1;
  animation: payflash 1.2s forwards
}

@keyframes payflash {
  to {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .payment399__card {
    flex-direction: column;
    text-align: center
  }

  .payment399__visual {
    height: 220px
  }

  .payment399__img {
    transform: none
  }

  .payment399__content {
    padding: 40px 24px
  }

  .payment399__heading {
    font-size: 1.9rem
  }

  .payment399__methods {
    justify-content: center
  }
}

.fingerlogin399 {
  background: #0d0f16;
  padding: 50px 20px;

  color: #e7eaf3;
}

.fingerlogin399__card {
  max-width: 1000px;
  margin: auto;
  background: #151823;
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .35);
  text-align: center;
  overflow: hidden;
}

/* ---- Visual ---- */
.fingerlogin399__visual {
  flex: 1 1 44%;
  background: #000
}

.fingerlogin399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

/* ---- Content ---- */
.fingerlogin399__content {
  flex: 1 1 56%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.fingerlogin399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #59ffe1 0%, #1effb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fingerlogin399__lead {
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.fingerlogin399__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  justify-content: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #b4b7c8;
}

.fingerlogin399__list li {
  background: #1d2030;
  padding: 10px 18px;
  border-radius: 40px;
}

/* ---- Button with pulse ---- */
.fingerlogin399__actions {
  text-align: center;
  margin-top: auto
}

.fingerlogin399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  background: #1effb0;
  color: #0d0f16;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.fingerlogin399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.fingerlogin399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.fingerlogin399__btn:hover::after {
  width: 320px;
  height: 320px;
  opacity: 0;
  transition: 0.6s;
}

/* ---- Mobile ≤768px ---- */
@media(max-width:767px) {
  .fingerlogin399__card {
    flex-direction: column;
    text-align: center
  }

  .fingerlogin399__visual {
    height: 220px
  }

  .fingerlogin399__img {
    transform: none
  }

  .fingerlogin399__content {
    padding: 40px 24px
  }

  .fingerlogin399__heading {
    font-size: 1.9rem
  }

  .fingerlogin399__list {
    justify-content: center
  }
}

.notify399 {
  background: #f6f8ff;
  padding: 90px 20px;
  
  color: #172033;
}

.notify399__card {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  display: flex;
  overflow: hidden;
}

/* ---- Visual ---- */
.notify399__visual {
  flex: 1 1 44%;
  background: #dde6ff
}

.notify399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* ---- Content ---- */
.notify399__content {
  flex: 1 1 56%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.notify399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #3366ff;
}

.notify399__lead {
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.notify399__link {
  color: #ff7d4d;
  text-decoration: none;
  border-bottom: 2px dashed #ff7d4d;
  transition: color .3s, border-color .3s;
}

.notify399__link:hover {
  color: #ffb294;
  border-color: #ffb294;
}

/* ---- Examples list ---- */
.notify399__examples {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  font-size: .9rem;
  color: #445066;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- CTA button ---- */
.notify399__actions {
  text-align: center;
  margin-top: auto
}

.notify399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 58px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #3366ff;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.notify399__btn:hover {
  transform: scale(1.08) translateY(-4px)
}

/* wave pulse */
.notify399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.notify399__btn:hover::after {
  width: 320px;
  height: 320px;
  opacity: 0;
  transition: 0.6s;
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .notify399__card {
    flex-direction: column;
    text-align: center
  }

  .notify399__visual {
    height: 220px
  }

  .notify399__img {
    transform: none
  }

  .notify399__content {
    padding: 40px 24px
  }

  .notify399__heading {
    font-size: 1.9rem
  }
}

.bonushero399 {
  position: relative;
  padding: 130px 20px 110px;
  color: #fdfdfd;
  
  overflow: hidden;
}

.bonushero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(0.55);
  z-index: -3;
}

.bonushero399__overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(102 0 0 / 92%) 15%, rgba(0, 0, 0, 0.35) 80%);
  z-index: -2;
}

/* Particle sparkle */
.bonushero399__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255, 224, 138, 1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkle 6s linear infinite;
}

.bonushero399__spark--1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.bonushero399__spark--2 {
  top: 60%;
  left: 80%;
  animation-delay: 1.5s;
}

.bonushero399__spark--3 {
  top: 35%;
  left: 55%;
  animation-delay: 3s;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(0);
    opacity: 0;
  }

  40% {
    transform: scale(1.4);
    opacity: 1;
  }

  70% {
    transform: scale(0);
    opacity: 0;
  }
}

.bonushero399__wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bonushero399__title {
  font-size: 2.9rem;
  ;
  margin-bottom: 28px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonushero399__text {
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.bonushero399__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bonushero399__btn {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.bonushero399__btn:hover {
  transform: translateY(-4px) scale(1.04);
}

.bonushero399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.7s;
}

.bonushero399__btn:hover::after {
  opacity: 1;
  animation: btnShine 1s forwards;
}

@keyframes btnShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.bonushero399__btn--primary {
  background: #ff0000;
  color: #fff;
}

.bonushero399__btn--secondary {
  background: transparent;
  color: #ff0000;
  border: 2px solid #ff0000;
}

/* ===== Mobile ≤768px ===== */
@media (max-width: 767px) {
  .bonushero399__title {
    font-size: 2.2rem;
  }

  .bonushero399__text {
    font-size: 1rem;
  }
}

.slotbonus399 {
  background: #f6f9ff;
  padding: 90px 20px;
  
  color: #182037;
}

.slotbonus399__wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: auto;
}

/* ===== Illustration ===== */
.slotbonus399__visual {
  flex: 1 1 42%
}

.slotbonus399__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
  transform: rotate(-5deg);
}

/* ===== Main card ===== */
.slotbonus399__card {
  flex: 1 1 58%;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 46px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.slotbonus399__heading {
  font-size: 2.4rem;
  margin-bottom: 22px;
  color: #ff7260;
}

.slotbonus399__lead {
  font-size: 1.06rem;
  margin-bottom: 34px;
}

.slotbonus399__link {
  color: #ff9b8e;
  text-decoration: none;
  border-bottom: 1px dashed #ff9b8e;
  transition: color .3s, border-color .3s;
}

.slotbonus399__link:hover {
  color: #ffc0b7;
  border-color: #ffc0b7;
}

/* ===== Feature inner cards ===== */
.slotbonus399__feature {
  background: #f0f3ff;
  border-left: 4px solid #ff7260;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.slotbonus399__sub {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #ff7260;
}

.slotbonus399__text {
  margin: 0;
  font-size: .97rem
}

/* ===== Chips ===== */
.slotbonus399__chips {
  list-style: none;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 46px;
  padding: 0;
  font-size: .85rem;
  color: #45506a;
}

.slotbonus399__chips li {
  background: #eaf0ff;
  padding: 10px 18px;
  border-radius: 40px;
}

/* ===== Button ===== */
.slotbonus399__actions {
  text-align: center;
  margin-top: auto
}

.slotbonus399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 58px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #ff7260;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.slotbonus399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.slotbonus399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left .6s ease;
}

.slotbonus399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media(max-width:767px) {
  .slotbonus399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .slotbonus399__visual {
    order: -1
  }

  .slotbonus399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }

  .slotbonus399__card {
    padding: 40px 24px
  }

  .slotbonus399__heading {
    font-size: 1.9rem
  }

  .slotbonus399__chips {
    justify-content: center
  }
}

.missionsdaily399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;
  
  color: #e6e9f4;
}

.missionsdaily399__card {
  max-width: 1100px;
  margin: auto;
  background: #171925;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .35);
  display: flex;
  overflow: hidden;
}

/* --- Visual --- */
.missionsdaily399__visual {
  flex: 1 1 42%;
  background: #000
}

.missionsdaily399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

/* --- Content --- */
.missionsdaily399__content {
  flex: 1 1 58%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.missionsdaily399__heading {
  font-size: 2.35rem;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #5ef3ff 0%, #36cfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.missionsdaily399__lead {
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.missionsdaily399__link {
  color: #5ef3ff;
  text-decoration: none;
  border-bottom: 1px dashed #5ef3ff;
  transition: color .3s, border-color .3s;
}

.missionsdaily399__link:hover {
  color: #9ff8ff;
  border-color: #9ff8ff;
}

/* --- Progress bar --- */
.missionsdaily399__progress {
  position: relative;
  width: 100%;
  height: 14px;
  background: #222432;
  border-radius: 12px;
  margin: 0 0 40px;
}

.missionsdaily399__bar {
  display: block;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(90deg, #36cfff, #5ef3ff);
}

.missionsdaily399__label {
  display: block;
  margin-top: 10px;
  font-size: .85rem;
  color: #9aa3c2;
}

/* --- Tasks list --- */
.missionsdaily399__tasks {
  list-style: none;
  margin: 0 0 46px;
  padding: 0;
  font-size: .9rem;
  color: #ccd1e4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- Button --- */
.missionsdaily399__actions {
  text-align: center;
  margin-top: auto
}

.missionsdaily399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  color: #0b0c13;
  background: #5ef3ff;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.missionsdaily399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.missionsdaily399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.missionsdaily399__btn:hover::after {
  width: 320px;
  height: 320px;
  opacity: 0;
  transition: 0.6s;
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .missionsdaily399__card {
    flex-direction: column;
    text-align: center;
  }

  .missionsdaily399__visual {
    height: 220px
  }

  .missionsdaily399__img {
    transform: none
  }

  .missionsdaily399__content {
    padding: 40px 24px
  }

  .missionsdaily399__heading {
    font-size: 1.9rem
  }
}

.mobilebonus399 {
  background: #0d0e15;
  padding: 90px 20px;
  
  color: #e8ebf4;
}

.mobilebonus399__hero {
  text-align: center;
  margin-bottom: -70px
}

.mobilebonus399__hero-img {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

/* ----- Card ----- */
.mobilebonus399__card {
  background: #171a26;
  border-radius: 20px;
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 46px 60px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .35);
  text-align: center;
}

.mobilebonus399__heading {
  font-size: 2.3rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #5efcff 0%, #29b6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobilebonus399__text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.mobilebonus399__link {
  color: #5efcff;
  text-decoration: none;
  border-bottom: 2px dashed #5efcff;
  transition: color .3s, border-color .3s;
}

.mobilebonus399__link:hover {
  color: #b3f7ff;
  border-color: #b3f7ff;
}

/* ----- Chips ----- */
.mobilebonus399__chips {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 46px;
  padding: 0;
  font-size: .85rem;
  color: #b6bed5;
}

.mobilebonus399__chips li {
  background: #1f2231;
  padding: 10px 20px;
  border-radius: 40px;
}

/* ----- Button with shimmer ----- */
.mobilebonus399__actions {}

.mobilebonus399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #0d0e15;
  background: #5efcff;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.mobilebonus399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.mobilebonus399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(-25deg);
  transition: left .7s ease;
}

.mobilebonus399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .mobilebonus399__card {
    padding: 120px 24px 60px
  }

  .mobilebonus399__heading {
    font-size: 1.9rem
  }

  .mobilebonus399__hero-img {
    max-width: 340px
  }
}

.reload399 {
  background: #f9fbff;
  padding: 90px 20px;
  
  color: #1e2540;
}

.reload399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ----- Visual ----- */
.reload399__visual {
  flex: 1 1 42%
}

.reload399__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(54, 72, 138, .12);
  transform: rotate(-4deg);
}

/* ----- Card ----- */
.reload399__card {
  flex: 1 1 58%;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(54, 72, 138, .15);
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.reload399__heading {
  font-size: 2.4rem;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #1ea4ff 0%, #85e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reload399__lead {
  font-size: 1.06rem;
  margin-bottom: 38px;
}

.reload399__link {
  color: #1ea4ff;
  text-decoration: none;
  border-bottom: 2px dashed #1ea4ff;
  transition: color .3s, border-color .3s;
}

.reload399__link:hover {
  color: #82d0ff;
  border-color: #82d0ff;
}

/* ----- Reload calendar ----- */
.reload399__calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 46px;
  font-size: .8rem;
  text-align: center;
}

.reload399__day {
  background: #eef4ff;
  border-radius: 12px;
  padding: 10px 0;
  font-weight: 700;
  color: #1e2540;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
}

.reload399__day span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: .75rem;
  color: #7480a3;
}

.reload399__day--fri {
  background: #dff6ff
}

/* ----- Button ----- */
.reload399__actions {
  text-align: center;
  margin-top: auto
}

.reload399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1ea4ff;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.reload399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.reload399__btn::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(-25deg);
  transition: left .6s ease;
}

.reload399__btn:hover::after {
  left: 200%
}

/* ----- Mobile ≤768px ----- */
@media (max-width:767px) {
  .reload399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .reload399__visual {
    order: -1
  }

  .reload399__img {
    max-width: 320px;
    margin: auto;
    transform: none;
  }

  .reload399__card {
    padding: 40px 24px
  }

  .reload399__heading {
    font-size: 1.9rem
  }

  .reload399__calendar {
    grid-template-columns: repeat(4, 1fr)
  }
}

.cashback399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;
  
  color: #e5e9f8;
}

.cashback399__wrap {
  max-width: 1120px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* --- Visual (angled mask) --- */
.cashback399__visual {
  flex: 1 1 44%;
  position: relative
}

.cashback399__img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

/* --- Card --- */
.cashback399__card {
  flex: 1 1 56%;
  background: rgba(18, 20, 34, .8);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 48px 46px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .3);
}

.cashback399__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(0, 255, 230, .12), transparent 60%);
  pointer-events: none;
}

.cashback399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #00ffe3 0%, #00aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cashback399__lead {
  font-size: 1.05rem;
  margin-bottom: 38px;
}

/* --- Cashback tier cubes --- */
.cashback399__grid {
  display: flex;
  gap: 22px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cashback399__cube {
  flex: 1 1 100px;
  background: #0e111d;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

.cashback399__cube-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00ffe3;
  display: block;
  margin-bottom: 4px;
}

/* --- Button with neon pulse --- */
.cashback399__actions {
  text-align: center
}

.cashback399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 58px;
  font-size: 1rem;
  font-weight: 600;
  color: #06070d;
  background: #00ffe3;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.cashback399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.cashback399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.cashback399__btn:hover::after {
  width: 320px;
  height: 320px;
  opacity: 0;
  transition: 0.6s;
}

/* === Mobile ≤768px (center everything) === */
@media (max-width:767px) {
  .cashback399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .cashback399__visual {
    order: -1
  }

  .cashback399__img {
    max-width: 320px;
    margin: auto;
    clip-path: none;
  }

  .cashback399__card {
    padding: 40px 24px
  }

  .cashback399__heading {
    font-size: 1.9rem
  }

  .cashback399__grid {
    justify-content: center
  }
}

.aviatorhero399 {
  position: relative;
  padding: 130px 20px 110px;
  color: #fefefe;
  
  overflow: hidden;
}

.aviatorhero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -3;
}

.aviatorhero399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(139 0 0 / 90%) 15%, rgb(147 95 0 / 35%) 80%);
  z-index: -2;
}

/* Trails */
.aviatorhero399__trail {
  position: absolute;
  width: 160%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(-6deg);
  opacity: .6;
  animation: flyTrail 7s linear infinite;
}

.aviatorhero399__trail--one {
  top: 30%;
  left: -60%;
}

.aviatorhero399__trail--two {
  top: 55%;
  left: -60%;
  animation-delay: 3.5s;
}

@keyframes flyTrail {
  0% {
    left: -60%
  }

  100% {
    left: 100%
  }
}

.aviatorhero399__wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.aviatorhero399__title {
  font-size: 2.9rem;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #ffdf70 0%, #ffeeb5 45%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aviatorhero399__text {
  font-size: 1.13rem;
  margin-bottom: 52px;
}

.aviatorhero399__link {
  color: #ffdf70;
  text-decoration: none;
  border-bottom: 1px dashed #ffdf70;
  transition: color .3s, border-color .3s;
}

.aviatorhero399__link:hover {
  color: #fff9c6;
  border-color: #fff9c6
}

/* Buttons */
.aviatorhero399__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.aviatorhero399__btn {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: transform .35s ease;
}

.aviatorhero399__btn:hover {
  transform: translateY(-4px) scale(1.04)
}

.aviatorhero399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.aviatorhero399__btn:hover::after {
  opacity: 1;
  animation: btnGlide 1s forwards;
}

@keyframes btnGlide {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.aviatorhero399__btn--primary {
  background: #6a0000;
  color: #fff;
}

.aviatorhero399__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #6a0000;
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .aviatorhero399__title {
    font-size: 2.2rem
  }

  .aviatorhero399__text {
    font-size: 1rem
  }
}

.aviatorfly399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;
  
  color: #e9ecf7;
}

.aviatorfly399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ------- Visual panel ------- */
.aviatorfly399__visual {
  flex: 1 1 42%;
  position: relative
}

.aviatorfly399__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  transform: rotate(-5deg);
}

/* Altitude dots */
.aviatorfly399__meter {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aviatorfly399__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00eaff;
  box-shadow: 0 0 6px #00eaff;
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  50% {
    opacity: .2
  }
}

/* ------- Content panel ------- */
.aviatorfly399__content {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column
}

.aviatorfly399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aviatorfly399__lead {
  font-size: 1.07rem;
  margin-bottom: 26px;
}

.aviatorfly399__text {
  font-size: 1.03rem;
  margin-bottom: 16px
}

.aviatorfly399__link {
  color: #ff96ff;
  text-decoration: none;
  border-bottom: 1px dashed #ff96ff;
  transition: .3s;
}

.aviatorfly399__link:hover {
  color: #ffc6ff;
  border-color: #ffc6ff
}

/* Live stats */
.aviatorfly399__stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #9aa4c7;
  margin: 24px 0 46px;
  justify-content: center;
}

/* ------- Button ------- */
.aviatorfly399__actions {
  text-align: center;
  margin-top: auto
}

.aviatorfly399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 58px;
  font-size: 1rem;
  font-weight: 600;
  color: #06070e;
  background: #00eaff;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.aviatorfly399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.aviatorfly399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(-25deg);
  transition: left .7s ease;
}

.aviatorfly399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .aviatorfly399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .aviatorfly399__visual {
    order: -1
  }

  .aviatorfly399__img {
    max-width: 320px;
    margin: auto;
    transform: none
  }

  .aviatorfly399__content {
    padding: 0
  }

  .aviatorfly399__heading {
    font-size: 1.9rem
  }
}

.aviatorhow399 {
  background: #07080d;
  padding: 90px 20px;
  
  color: #e5e9f6;
}

.aviatorhow399__card {
  max-width: 1150px;
  margin: auto;
  background: #10121b;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .4);
  display: flex;
  overflow: hidden;
}

/* --- Visual --- */
.aviatorhow399__visual {
  flex: 1 1 42%;
  background: #000
}

.aviatorhow399__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

/* --- Content --- */
.aviatorhow399__content {
  flex: 1 1 58%;
  padding: 48px 46px;
  display: flex;
  flex-direction: column
}

.aviatorhow399__heading {
  font-size: 2.4rem;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #ff4aa9 0%, #fcb13e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aviatorhow399__lead {
  font-size: 1.06rem;
  margin-bottom: 28px
}

.aviatorhow399__text {
  font-size: 1.02rem;
  margin-bottom: 16px
}

.aviatorhow399__link {
  color: #ff4aa9;
  text-decoration: none;
  border-bottom: 1px dashed #ff4aa9;
  transition: color .3s, border-color .3s;
}

.aviatorhow399__link:hover {
  color: #ffa8d1;
  border-color: #ffa8d1
}

/* --- Tip grid --- */
.aviatorhow399__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 34px 0 46px;
}

.aviatorhow399__tip {
  flex: 1 1 150px;
  background: #181b29;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  font-size: .84rem;
}

.aviatorhow399__tip b {
  display: block;
  color: #fcb13e;
  margin-bottom: 4px;
  font-size: .9rem
}

/* --- Button --- */
.aviatorhow399__actions {
  text-align: center;
  margin-top: auto
}

.aviatorhow399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 56px;
  font-size: 1rem;
  font-weight: 600;
  color: #07080d;
  background: #fcb13e;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.aviatorhow399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.aviatorhow399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-25deg);
  transition: left .6s ease;
}

.aviatorhow399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .aviatorhow399__card {
    flex-direction: column;
    text-align: center
  }

  .aviatorhow399__visual {
    height: 220px
  }

  .aviatorhow399__img {
    transform: none
  }

  .aviatorhow399__content {
    padding: 40px 24px
  }

  .aviatorhow399__heading {
    font-size: 1.9rem
  }

  .aviatorhow399__grid {
    justify-content: center
  }
}

.aviatorwhy399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;
  
  color: #e7ebf8;
}

.aviatorwhy399__card {
  max-width: 1180px;
  margin: auto;
  background: #13151f;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ----- Visual ----- */
.aviatorwhy399__visual {
  background: #000
}

.aviatorwhy399__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* ----- Content ----- */
.aviatorwhy399__content {

  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.aviatorwhy399__heading {
  font-size: 2.4rem;
  margin-bottom: 28px;
  text-align: center;
  background: linear-gradient(90deg, #ff4aa9 0%, #c454ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid of feature cards */
.aviatorwhy399__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.aviatorwhy399__feature {
  background: #181b29;
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
  font-size: .95rem;
}

.aviatorwhy399__sub {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #ff4aa9;
}

.aviatorwhy399__link {
  color: #ff4aa9;
  text-decoration: none;
  border-bottom: 1px dashed #ff4aa9;
  transition: color .3s, border-color .3s;
}

.aviatorwhy399__link:hover {
  color: #ffa6dd;
  border-color: #ffa6dd;
}

/* CTA Button with jet-flash */
.aviatorwhy399__actions {
  text-align: center;
  margin-top: 42px
}

.aviatorwhy399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #06070d;
  background: #ff4aa9;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.aviatorwhy399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.aviatorwhy399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.aviatorwhy399__btn:hover::after {
  width: 360px;
  height: 360px;
  opacity: 0;
  transition: 0.6s;
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .aviatorwhy399__card {
    flex-direction: column;
    text-align: center
  }

  .aviatorwhy399__visual {
    height: 220px
  }

  .aviatorwhy399__img {
    transform: none
  }

  .aviatorwhy399__content {
    padding: 40px 24px
  }

  .aviatorwhy399__heading {
    font-size: 1.9rem
  }

  .aviatorwhy399__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.crazyhero399 {
  position: relative;
  padding: 130px 20px 110px;
  color: #fbfbfb;
  
  overflow: hidden;
}

.crazyhero399__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg.jpg") center/cover no-repeat;
  filter: brightness(.55);
  z-index: -3;
}

.crazyhero399__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(0, 0, 0, .9) 10%, rgba(0, 0, 0, .35) 80%);
  z-index: -2;
}

/* Sparkle accents */
.crazyhero399__spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe979 0%, transparent 70%);
  opacity: .8;
  animation: spark 7s linear infinite;
}

.crazyhero399__spark--a {
  top: 20%;
  left: 25%;
  animation-delay: 0s
}

.crazyhero399__spark--b {
  top: 60%;
  left: 70%;
  animation-delay: 2s
}

.crazyhero399__spark--c {
  top: 35%;
  left: 55%;
  animation-delay: 4s
}

@keyframes spark {

  0%,
  100% {
    transform: scale(0);
    opacity: 0
  }

  40% {
    transform: scale(1.4);
    opacity: 1
  }

  70% {
    transform: scale(0);
    opacity: 0
  }
}

/* Wrapper */
.crazyhero399__wrap {
  max-width: 920px;
  margin: auto;
  text-align: center;
}

/* Typography */
.crazyhero399__title {
  font-size: 2.9rem;
  margin-bottom: 28px;
  background: whitesmoke;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crazyhero399__text {
  font-size: 1.13rem;
  margin-bottom: 50px;
}

.crazyhero399__link {
  color: #ffe979;
  text-decoration: none;
  border-bottom: 1px dashed #ffe979;
  transition: color .3s, border-color .3s;
}

.crazyhero399__link:hover {
  color: #fff4bb;
  border-color: #fff4bb;
}

/* Buttons */
.crazyhero399__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.crazyhero399__btn {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: transform .35s ease;
}

.crazyhero399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.crazyhero399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .7s;
}

.crazyhero399__btn:hover::after {
  opacity: 1;
  animation: btnShimmer 1.1s forwards;
}

@keyframes btnShimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.crazyhero399__btn--primary {
  background: #ffe979;
  color: #232324;
}

.crazyhero399__btn--secondary {
  background: transparent;
  color: #ffe979;
  border: 2px solid #ffe979;
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .crazyhero399__title {
    font-size: 2.2rem
  }

  .crazyhero399__text {
    font-size: 1rem
  }
}

.crazywhy399 {
  background: #08090f;
  padding: 90px 20px;
  
  color: #e9ecf8;
}

.crazywhy399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ----- Visual ----- */
.crazywhy399__visual {
  flex: 1 1 40%;
  position: relative;
}

.crazywhy399__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}

/* floating coin animation */
.crazywhy399__coin {
  position: absolute;
  top: 10%;
  right: -40px;
  width: 60px;
  height: 60px;
  background: url("img/bg.jpg") center/contain no-repeat;
  animation: coinSpin 6s linear infinite;
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg) translateY(0)
  }

  50% {
    transform: rotateY(360deg) translateY(20px)
  }

  100% {
    transform: rotateY(720deg) translateY(0)
  }
}

/* ----- Content card ----- */
.crazywhy399__card {
  flex: 1 1 60%;
  background: rgba(20, 22, 35, .8);
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 48px 46px;
  position: relative;
  overflow: hidden;
}

.crazywhy399__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 110, 220, .18), transparent 60%);
  pointer-events: none;
}

.crazywhy399__heading {
  font-size: 2.4rem;
  margin-bottom: 26px;
  background: linear-gradient(90deg, #ff78f0 0%, #57a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crazywhy399__lead {
  font-size: 1.06rem;
  margin-bottom: 28px
}

.crazywhy399__text {
  font-size: 1.03rem;
  margin-bottom: 16px
}

.crazywhy399__link {
  color: #ff78f0;
  text-decoration: none;
  border-bottom: 1px dashed #ff78f0;
  transition: color .3s, border-color .3s;
}

.crazywhy399__link:hover {
  color: #ffaefb;
  border-color: #ffaefb;
}

/* ----- Facts ----- */
.crazywhy399__facts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 32px 0 46px;
}

.crazywhy399__fact {
  flex: 1 1 120px;
  background: #101223;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

.crazywhy399__fact b {
  display: block;
  font-size: 1.4rem;
  color: #57a6ff;
}

.crazywhy399__fact span {
  font-size: .8rem;
  color: #babfd9
}

/* ----- Button ----- */
.crazywhy399__actions {
  text-align: center
}

.crazywhy399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #08090f;
  background: #ff78f0;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.crazywhy399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.crazywhy399__btn::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(-25deg);
  transition: left .6s ease;
}

.crazywhy399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .crazywhy399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px
  }

  .crazywhy399__visual {
    order: -1
  }

  .crazywhy399__img {
    max-width: 320px;
    margin: auto
  }

  .crazywhy399__card {
    padding: 40px 24px
  }

  .crazywhy399__heading {
    font-size: 1.9rem
  }

  .crazywhy399__facts {
    justify-content: center
  }
}

.crazywheel399 {
  background: #f4f8ff;
  padding: 90px 20px;
  
  color: #1f2542;
}

/* --- Layout --- */
.crazywheel399__wrap {
  max-width: 1120px;
  margin: auto;
}

.crazywheel399__hero {
  text-align: center;
  margin-bottom: -70px
}

.crazywheel399__img {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(60, 80, 150, .15);
}

/* --- Card --- */
.crazywheel399__card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(60, 80, 150, .15);
  padding: 110px 48px 60px;
  text-align: left;
}

.crazywheel399__heading {
  font-size: 2.35rem;
  margin-bottom: 22px;
  text-align: center;
  background: linear-gradient(90deg, #ff9c3d 0%, #ffdb70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crazywheel399__lead {
  font-size: 1.06rem;
  margin-bottom: 28px;
  text-align: center;
}

.crazywheel399__text {
  font-size: 1.02rem;
  margin-bottom: 16px
}

.crazywheel399__link {
  color: #ff9c3d;
  text-decoration: none;
  border-bottom: 2px dashed #ff9c3d;
  transition: color .3s, border-color .3s;
}

.crazywheel399__link:hover {
  color: #ffcba1;
  border-color: #ffcba1;
}

/* --- Top-slot demo row --- */
.crazywheel399__tops {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px auto 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.crazywheel399__reel {
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.crazywheel399__reel--segment {
  background: #5b7bff
}

.crazywheel399__reel--mult {
  background: #ff9c3d
}

.crazywheel399__plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5b7bff
}

.crazywheel399__result {
  background: #20d7ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
}

/* --- Button --- */
.crazywheel399__actions {
  text-align: center
}

.crazywheel399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #ff9c3d;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.crazywheel399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.crazywheel399__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-25deg);
  transition: left .7s ease;
}

.crazywheel399__btn:hover::after {
  left: 200%
}

/* ===== Mobile ≤768px ===== */
@media (max-width:767px) {
  .crazywheel399__card {
    text-align: center;
    padding: 120px 24px 60px
  }

  .crazywheel399__heading {
    font-size: 1.9rem
  }

  .crazywheel399__img {
    max-width: 340px
  }
}

/* ===== Dark neon scheme ===== */
.bonusgames399 {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 56%);;
  padding: 90px 20px;
  
  color: #e6e9f7;
}

/* Layout */
.bonusgames399__wrap {
  max-width: 1180px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* -------- VISUAL -------- */
.bonusgames399__visual {
  flex: 1 1 40%;
  position: relative;
}

.bonusgames399__img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .45);
}

.bonusgames399__ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px dashed #ff78f0;
  animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg)
  }
}

/* -------- CONTENT -------- */
.bonusgames399__content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
}

.bonusgames399__heading {
  font-size: 2.4rem;
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(90deg, #ff78f0 0%, #45d7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonusgames399__lead {
  font-size: 1.06rem;
  margin-bottom: 26px
}

.bonusgames399__text {
  font-size: 1.02rem;
  margin-bottom: 16px
}

.bonusgames399__link {
  color: #ff78f0;
  text-decoration: none;
  border-bottom: 1px dashed #ff78f0;
  transition: color .3s, border-color .3s;
}

.bonusgames399__link:hover {
  color: #ffaeea;
  border-color: #ffaeea
}

/* Chips */
.bonusgames399__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 32px 0 46px;
  padding: 0;
  font-size: .85rem;
  color: #b6bed5;
}

.bonusgames399__chips li {
  background: #161827;
  padding: 10px 18px;
  border-radius: 40px;
}

/* Button with pulse */
.bonusgames399__actions {
  text-align: center
}

.bonusgames399__btn {
  position: relative;
  display: inline-block;
  padding: 18px 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #0b0c13;
  background: #ff78f0;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s ease;
}

.bonusgames399__btn:hover {
  transform: translateY(-4px) scale(1.05)
}

.bonusgames399__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  transition: opacity .6s, width .6s, height .6s;
}

.bonusgames399__btn:hover::after {
  width: 340px;
  height: 340px;
  opacity: 0;
  transition: 0.6s;
}

/* ===== Responsive ≤768px ===== */
@media (max-width:767px) {
  .bonusgames399__wrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .bonusgames399__visual {
    order: -1
  }

  .bonusgames399__img {
    max-width: 320px;
    margin: auto;
  }

  .bonusgames399__ring {
    display: none
  }

  .bonusgames399__heading {
    font-size: 1.9rem
  }
}




















/* ===== base ===== */
.zfooter {
  background: linear-gradient(90deg,rgba(211, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 82%);
  color: #d9d7e5;
  font-size: .95rem;
  padding: 60px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* 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: 100px
}

.zfooter__links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.zfooter__links a {
  color: #f8ff66;
  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
}

.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: #ffb866;
  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
  }

  .feature {
    justify-content: center;
  }

  .zfooter__divider {
    display: block
  }
}

/* ========== 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;
  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;
  box-shadow: 0 -2px 16px #00e79a33, 0 2px 20px #0009;
  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 {
  background: rgb(231 0 0 / 96%);
  color: #181a10;
  transform: scale(1.01);
  box-shadow: 0 -4px 24px #ffd70055, 0 2px 30px #00e79a22;
}

@media (max-width: 767px) {
  .n7fixed-bonus-banner {
    font-size: 1.08rem;
    padding: 17px 0 15px 0;
  }
}
















.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}




[class*="btn"]:not([class*="wrap"]),
[class*="button"]:not([class*="buttons"]) {
  padding: 20px 30px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  animation:
    glow-pulse-const 2s infinite alternate ease-in-out,
    scale-pulse 2s infinite ease-in-out;
}

@keyframes scale-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

/* secondary-style buttons get their own animations */
[class*="secondary"]:not([class*="wrap"]) {
  /* apply two new animations: a gentle color shift and a subtle tilt */
  animation:
    color-wave 3s infinite ease-in-out,
    tilt 2s infinite alternate ease-in-out;
}

/* smoothly shift background color */
@keyframes color-wave {
  0%, 100% {
    background-color: inherit;
  }
  50% {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* rock slightly back and forth */
@keyframes tilt {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

[class*="btn"]:not([class*="secondary"]),
[class*="button"]:not([class*="buttons"]) {
  background: #da0100;
  color: white;
  border: 2px solid white;

}

[class*="secondary"]
 {
  color: #fbae17;
  border: 2px solid #fbae17;

}



.ze77-appfocus__subtitle {
  color: white;
}

a[class*="__link"] {
  position: relative;
}

a[class*="__link"]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

a[class*="__link"]:hover,
a[class*="__link"]:focus {
  color: orange;
}

a[class*="__link"]:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

h2[class*="title"] {
  line-height: 1;
}

h1[class*="title"]:not([class*="subtitle"]) {
  font-size: 2.5em;
  line-height: 1;
}

[class*="content"] {
  text-align: center;
}

[class*="heading"],
[class*="text"] {
  text-align: center;
  line-height: 1;
}

[class*="actions"] {
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {

  h1[class*="title"]:not([class*="subtitle"]) {
    font-size: 2.4em;
  }

  [class*="btn"]:not([class*="wrap"]),
  [class*="button"]:not([class*="buttons"]) {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    animation:
      glow-pulse-const 1.8s infinite alternate ease-in-out,
      scale-pulse 2.5s infinite ease-in-out;
  }

}

.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fingerlogin399__heading {
  line-height: 1.2em !important;
}



@media (max-width: 768px) {}

@media (max-width: 768px) {

  section {
    padding: 20px !important;
  }

  .bee999-slotpromos__img,
  .bee999-sportsimplified__sportcard img,
  .bee999-confidence__img,
  .bee999-localbd__flag img,
  .bee999-skillplay__img,
  .bee999-appbonus__img,
  .bee999-crashbet__img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .lux-header__login-btn,
  .bee999-bonuscalendar__calendarvisual,
  .bee999-bonuscalendar__calendarvisual img {
    width: auto !important;
  }

  .bee999-localbd__gameimg,
  .bee999-bonuscalendar__calendarvisual,
  .bee999-bonuscalendar__calendarvisual img {
    height: auto;
  }

  .ze77-tools__bubbles,
  .bee999-bonuscalendar-btn,
  .mobileaccess-8iii__list li,
  .fast-8iii__list li,
  .bee999-mobileperf__features,
  .bee999-topslots__features,
  .smart-8iii__list li,
  .bee999-bet__badges,
  .crash-8iii__feat,
  .bee999-loginaccess__features,
  .bee999-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%;
  }

  .cv666-luxehero__cta-row,
  .n777-why__container,
  .n777-highlights__container,
  .ze77-applite__actions,
  .n7wl-grid,
  .n7dk-wrapper,
  .n7lp-container,
  .n7gr-grid,
  .n7ct-wrap,
  .bonuscal-8iii__flex,
  .ze77-hero__actions,
  .n7bt-inner,
  .nx7l-actions,
  .bee999-allgames__actions,
  .ze77-games__actions,
  .ze77-slots__actions {
    display: flex;
    flex-direction: column;

  }

  [class*="actions"] {
    gap: 0;
  }
}

@media (max-width: 505px) {

  .luxhdr__logo-img {
    height: 55px;
  }
}



.n7fixed-bonus-banner {

  margin-bottom: 0 !important;
}


html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */
main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
  padding-top: 57px;
}

/* Футер всегда внизу */
footer {


  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.lux-btn--login {
  padding: 14px;
  padding: 8px 18px;
}

.luxhdr__actions {
  gap: 10px !important;
}