* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Theme Variables */
:root {
  --body-bg: #000;
  --text-dark: #000;
  --text-light: #fff;
  --card-bg: linear-gradient(180deg, #240630 0%, rgba(0, 0, 0, 0) 100%);
  --card-border: linear-gradient(180deg, #83258C 0%, rgba(131, 37, 140, 0.00) 100%);
  --trade-bg: #240B2D;
  --footer-line: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #512773 50.96%, rgba(81, 39, 115, 0.00) 98.56%);
}

body.light-mode {
  --body-bg: #EDEDED;
  --text-dark: #111;
  --text-light: #111;
  --card-bg: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  --card-border: linear-gradient(
    180deg,
    #E9B7EE 0%,
    rgba(233, 183, 238, 0) 100%
  );

  
  --trade-bg: #F3EBF6;
  --footer-line: linear-gradient(90deg, rgba(255,255,255,0) 0%, #c9a1df 50.96%, rgba(255,255,255,0) 98.56%);
}

body {
  position: relative;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-dark);
  background: var(--body-bg);
  overflow-x: hidden;
}
.node-bg-layer{
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.node-bg-img{
    width: 750px;
    max-width: 45vw;
    opacity: .35;
    mix-blend-mode: screen;
    animation: nodeFloat 8s ease-in-out infinite alternate;
}

/* keep slider above */
.stragic-sec,
.bottom-interaction{
    position: relative;
    z-index: 2;
}

@keyframes nodeFloat{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(-20px);
    }
}
body::before {
  content: "";
  position: fixed;
  inset: -40px;
  background: #000001 url(../images/body-bg.png) no-repeat top center;
  background-size: cover;
  animation: bodyBgMove 5s ease-in-out infinite alternate;
  z-index: -1;
}

body.light-mode::before {
  content: "";
  position: fixed;
  inset: -40px;
  background: #fff url(../images/body-bg-light-mode.png) no-repeat top center;
  background-size: cover;
  animation: bodyBgMove2 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes bodyBgMove {
  0% {
    transform: scale(1) translate(0, 0);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.04) translate(-18px, 12px);
    filter: brightness(1.35);
  }

  100% {
    transform: scale(1.08) translate(18px, -10px);
    filter: brightness(0.95);
  }
}
@keyframes bodyBgMove2 {
  0% {
    transform: scale(1) translate(0, 0);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.04) translate(-18px, 12px);
    filter: brightness(1.15);
  }

  100% {
    transform: scale(1.08) translate(18px, -10px);
    filter: brightness(0.95);
  }
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #E00;
}

html {
  scroll-behavior: smooth;
}

.btn.focus,
.btn:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

body.light-mode .visibleSlider .swiper-arrow.swiper-button-disabled {
  background-image: url(../images/left-light-mode.svg);
  //opacity: 0.45;
  pointer-events: none;
}

body.light-mode .visibleSlider .swiper-arrow.js-swiper-prev {
  transform: rotate(180deg);
  opacity: 1;
  background-image: url(../images/right-light-mode.svg);
}

body.light-mode .visibleSlider .swiper-arrow.js-swiper-next {
  background-image: url(../images/right-light-mode.svg);
}

body.light-mode .visibleSlider .swiper-arrow.js-swiper-next.swiper-button-disabled {
  background-image: url(../images/left-light-mode.svg);
  transform: rotate(180deg);opacity: 1;
}

body.light-mode .visibleSlider .swiper-arrow.js-swiper-prev.swiper-button-disabled {
  background-image: url(../images/left-light-mode.svg);
  transform: rotate(0deg);
}

body.light-mode .stragic-sec .trade-info .label, .feature-card .label, .label-btn.mrtp {
    color: #845CAC;border: 1px solid #B596D4;}
body.light-mode .label-btn.mrtp { color: #845CAC;border: 1px solid #B596D4;}
.bgbtn{background: linear-gradient(110deg, #9028A5 17.25%, #6128D2 82.13%); color: #fff!important;}

.container {max-width: 1310px;padding: 0 15px;}
.stragic-sec {padding: 30px 0 30px;}
.stragic-sec .slider-controls {margin-top: 22px;}
.u-section--special-visible-slider {margin-top: 0; overflow: hidden;}

/*----------------*/
.bottom-interaction {position: fixed;bottom: 0;left: 0;right: 0;z-index: 9999; //padding: 20px; margin-bottom: 20px}
.bottom-interaction.stop-at-footer {position: absolute;}
.slider-bottom-pagination { width: max-content; padding: 19.2px 17.2px; border-radius: 50px; background: rgba(89, 36, 139, 0.20);
 backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  isolation: isolate;
   border: 1px solid rgba(131, 37, 140, 0.35); display: flex; align-items: center; justify-content: center; z-index: 99; margin: 0 auto}
.js-swiper-pagination {position: static !important;display: flex;align-items: center;justify-content: center;gap: 6px;}
.js-swiper-pagination .swiper-pagination-bullet {width: 8px;height: 8px;border-radius: 50px;background: rgba(255, 255, 255, 0.50);
    margin: 0 !important;transition: all 0.35s ease;}
.js-swiper-pagination .swiper-pagination-bullet-active { width: 50px; height: 8px;background: rgba(255,255,255,0.14);position: relative;}
.js-swiper-pagination .swiper-pagination-bullet-active::before {content: "";position: absolute;left: 0;top: 0; width: 5%; height: 100%; border-radius: 50px;
  background: linear-gradient(110deg, #9028A5 17.25%, #6128D2 82.13%);animation: bulletFill 2s linear forwards;}

@keyframes bulletFill {
  from {
    width: 5%;
  }

  to {
    width: 100%;
  }
}
body.light-mode .slider-bottom-pagination {background: var(--trade-bg);}
body.light-mode .js-swiper-pagination .swiper-pagination-bullet {background: rgba(131, 37, 140, 0.65);}
body.light-mode .js-swiper-pagination .swiper-pagination-bullet-active {background: rgba(90, 40, 120, 0.12);}
body.light-mode .js-swiper-pagination .swiper-pagination-bullet-active::before { background: linear-gradient(110deg, #9028A5 17.25%, #6128D2 82.13%);}
/*-------------------*/
.main-wrapper {width: 100%; min-height: 100vh; padding: 26px 0 20px; overflow: hidden;}
.logo {display: flex;align-items: center; justify-content: space-between;}
.logo img {transition: 0.3s ease;}
.hero-content {padding-top: 42px;}
.hero-content h1 { color: var(--text-light); font-size: 40px;  font-style: normal; font-weight: 700; line-height: 50px; padding-bottom: 4px;}
.hero-content p {color: var(--text-light); font-size: 18px; font-style: normal; font-weight: 500; line-height: 26px;}

.theme-toggle {width: 58px;height: 30px;border-radius: 30px; background: transparent; border: 1px solid #83258B;display: inline-flex; align-items: center;
  padding: 5px;cursor: pointer; transition: 0.35s ease;}
  
/* Dark mode - purple circle left */
.theme-icon {width: 20px; height: 20px;border-radius: 50%; position: relative; transform: translateX(28px); transition: 0.35s ease;
  background-image: url(../images/moon.png);background-repeat: no-repeat;}
  
body.light-mode .theme-icon {transform: translateX(20px);}
body.light-mode .theme-icon::after {content: ""; position: absolute; width: 20px; height: 20px;border-radius: 50%;left: -20px; top: 0px;
  background-image: url(../images/bullet.png);background-repeat: no-repeat;}
body.light-mode .theme-icon {background-image: none;}
.theme-toggle:hover {box-shadow: 0 0 16px rgba(159, 44, 178, 0.45);}

.stragic-sec .trade-info {border-radius: 20px; background: var(--trade-bg); padding: 20px; transition: 0.3s ease; display: flex; flex-direction: column;}
.site-logo img {max-width: 100%; transition: 0.3s ease;}
.logo-light {display: none;}
.logo-dark { display: block;}
body.light-mode .logo-dark { display: none;}
body.light-mode .logo-light { display: block;}
.stragic-sec .trade-info .label, .feature-card .label {color: #A073B1;  text-align: center; font-size: 12px; font-style: normal; font-weight: 400;
  line-height: 28px;letter-spacing: 3px; text-transform: uppercase; border-radius: 50px; border: 1px solid #654281; padding: 7.7px 42px;
display: inline-block; width: max-content; transition: 0.3s ease;}
 
.label-btn.mrtp {margin-top: 25px}


.stragic-sec .trade-info h3 {
  color: var(--text-light);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.stragic-sec .trade-info p {
  color: var(--text-light);
  font-size: 12px;
  line-height: 22px;
}

.stragic-sec .trade-info .btnsm {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 13.3px 11.85px;
  margin-right: 0;
  margin-top: 0;
}

.cards-area {
  display: flex;
  width: 100%;
}

.feature-card {
  border-radius: 20px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  padding: 24px 32px 30px;
  height: auto;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}



.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-width: 1px;
  background: var(--card-border) border-box;
  border-style: solid;
  border-image: linear-gradient(to bottom, #83258C, rgba(131, 37, 140, 0.00)) 80%;
  z-index: 1;
  border-bottom: 0;
  height: 270px;
  pointer-events: none;
}

.feature-card.main-card {
  flex: 0 0 74.5%;
}

.feature-card.side-card {
  flex: 0 0 34%;
  justify-content: center;
}

.card-img {
  width: 30%;
  text-align: center;
}

.card-img img {
  max-width: 100%;
}



.card-text {
  width: 70%;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.card-text h2 {
  color: var(--text-light);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.card-text p {
  color: var(--text-light);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.btnbg {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;
  padding: 16.5px 23.7px;
  margin-top: 25px;transition: all 0.35s ease;
}

.btn-purple {border-radius: 50px; background: linear-gradient(110deg, #9028A5 17.25%, #6128D2 82.13%);margin-right: 10px;justify-content: center;
  border: 1px solid #6128D2;}
.btn-purple:hover,
.btn-doc:hover {color: #fff;}

.btn-doc { border-radius: 50px; background: transparent; justify-content: center; border: 1px solid #fff;}
/*.btnbg { position: relative; overflow: hidden; z-index: 1; transform: translateY(0);}
.btnbg::before {content: ""; position: absolute; top: 0; left: -120%; width: 80%; height: 100%; background: linear-gradient(
    120deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-25deg); transition: 0.6s; z-index: -1;}
.btnbg:hover {transform: translateY(-4px); box-shadow: 0 12px 28px rgba(144, 40, 165, 0.45);}
.btnbg:hover::before {left: 130%;}
.btn-purple:hover {background: linear-gradient(110deg, #b936d0 17.25%, #7435ff 82.13%);}
.btn-doc:hover {background: #fff; color: #240630 !important; border-color: #fff;}*/
.btnbg {position: relative;overflow: hidden;transition: all 0.01s ease-in-out;}
.btnbg:hover {transform: translateY(-4px); box-shadow: 0 0 15px rgba(145, 40, 255, 0.45), 0 0 35px rgba(145, 40, 255, 0.28);background-position: right center;
  transform: translateY(-3px);}
body.light-mode .btn-doc {color: #58248B; border-color: #58248B;}
body.light-mode .btn-doc:hover { color: #58248B;}
.mrght {margin-right: 10px !important;}
.footer-line {height: 1px;/*background: var(--footer-line);*/margin-top: 75px; margin-bottom: 30px;}
footer{position: relative}
footer::before {background: var(--footer-line); height: 1px; width: 100%; content: ""; left: 0; right: 0; position: absolute}
footer p {color: rgba(255, 255, 255, 0.70); font-size: 14px; font-style: normal; font-weight: 500; line-height: normal; padding-top: 36px}
body.light-mode footer p {color: rgba(0, 0, 0, 0.70);}
.js-special-visible-slider .swiper-slide {height: auto;box-sizing: border-box;}
.hover-disabled:hover {box-shadow: none!important;
    background: none!important;
    color: #A073B1!important;
    background-position: right center;
    transform: translateY(0px)!important;}

.stragic-sec .trade-info .label:hover, .feature-card .label-btn:hover {box-shadow:0 0 16px rgba(159, 44, 178, 0.45);
	background-position: right center;
    transform: translateY(-3px);}
body.light-mode	.stragic-sec .trade-info .label:hover, body.light-mode .feature-card .label-btn:hover { background-position: right center;
    transform: translateY(-3px);}


.sequence-animation {max-width: 100%; display: block; will-change: contents; opacity: 1;
  transition: opacity 0.25s ease-in-out;}
  
.js-special-visible-slider .swiper-slide {transition: all 0.5s ease;}
.js-special-visible-slider .swiper-slide:not(.swiper-slide-active) {filter: blur(1.55px);
transform: scale(0.96);}
.js-special-visible-slider .swiper-slide.swiper-slide-active {filter: blur(0);opacity: 1; transform: scale(1);}  


.card-text {opacity: 0;transform: translateY(30px);transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1);}
.card-text.text-animate {opacity: 1;transform: translateY(0);}

