    * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Figtree", "Figtree Placeholder", sans-serif;
  background: #000;
}
.container {
  max-width: 1200px;
}

.navbar {
  background-color: #000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.navbar-brand img {
  width: 65px;
  border-radius: 50%;
}

.navbar-nav .nav-link {
  color: #fff;
  margin-right: 20px;
  font-weight: 500;
  font-size: 18px;
}
.navbar-dark .navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-animate {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease;
}

.navbar-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* hero-sec */
.hero-sec {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: center;
  padding: 120px 0;
  position: relative;

  overflow: hidden;
  z-index: 2 !important;
}

.hero-contant {
  padding: 40px;
  border-radius: 20px;
  /* max-width: 700px; */
  width: 100%;
  z-index: 2 !important;
}

.hero-img img {
  width: 500px;
  margin-bottom: 30px;
}
.hero-img {
  position: relative;
  width: 100%; /* apne hisab se size badhao */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🌀 Outer ring */
.hero-img .ring.outer {
  position: absolute;
  width: 400px;
  height: 300px;
  border-radius: 363px !important;
  background: linear-gradient(
    229deg,
    #3a26ad,
    #004fc3a8 13%,
    #0d6efd05 35.0236%,
    #0d6efd36 64.1724%,
    #0d6efd33 88%
  );
  animation: rotateOuter 10s linear infinite;
  z-index: 0;
  filter: blur(12px);
  top: 18%;
}
/* 🌀 Inner ring */
.hero-img .ring.inner {
  position: absolute;
  width: 400px;
  height: 300px;
  border-radius: 363px;
  background: linear-gradient(
    141deg,
    #3a26ad,
    #222 13%,
    #c96ef000 35.0236%,
    #a45cdb00 64.1724%,
    #222 88%
  );
  animation: rotateInner 6s linear infinite reverse;
  z-index: 1;
  filter: blur(17px);
  top: 18%;
}

/* 🪙 Coin / image */
.hero-img img {
  position: relative;
  object-fit: contain;
  z-index: 2;
}

/* 🌪 Rotation animations */
@keyframes rotateOuter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateInner {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.hero-heading h1 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-size: 70px;
}
.hero-heading p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 30px;
  width: 100%;
}

.hero-btn {
  position: relative;
  display: inline-block;
  overflow: hidden; /* bubbles bahar na nikle */
}

.hero-btn a {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 50% 50%, #0a0a0f, #050507);
  border: 2px solid rgba(170, 170, 255, 0.3);
  box-shadow: 0 0 12px rgba(150, 150, 255, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  padding: 18px 42px;
  border-radius: 50px;
  text-transform: capitalize;
  display: block;
  position: relative;
  transition: all 0.214s ease-in-out;
  z-index: 2;
  overflow: hidden;
}
a.glow-btn.btn:hover {
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 50% 50%, #0a0a0f, #050507);
  border: 2px solid rgba(170, 170, 255, 0.3);
  box-shadow: 0 0 12px rgba(150, 150, 255, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
}

.individual-bubble {
  position: absolute;
  bottom: 0; /* bubble neeche se start karega */
  border-radius: 50%;
  background-color: #4f46f3;
  z-index: 1;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 2; /* Above the canvas */
  color: #fff;
}

/* Initial hidden state */
.hero-heading {
  opacity: 0;
  position: relative;
  overflow: hidden;
}

/* Pseudo element for left-to-right fade illusion */
.hero-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000 0%, transparent 100%);
  transform: translateX(-100%);
  opacity: 0.4;
  transition: transform 1.5s ease;
}

/* When active */
.hero-heading.show {
  opacity: 1;
  transition: opacity 1.5s ease;
}

.hero-heading.show::before {
  transform: translateX(100%);
}

/* Button simple fade */
.hero-btn {
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}

.hero-btn.show {
  opacity: 1;
}

/* about-token-sec */
.about-token-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
}
.about-token-sec.show {
  opacity: 1;
  transform: translateY(0);
}

.about-token {
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  max-width: 800px;
  margin: auto;
}

.about-token h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-token h3 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-token p {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 30px;
}

.about-token a {
  display: inline-block;
  padding: 8px 20px;
  background: rgb(13, 11, 170);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}

.about-token a:hover {
  background: rgb(21, 20, 105);
  transform: scale(1.1);
}
.about-token-img {
  position: absolute;
  /* bottom: 0; */
  left: 50%;
  display: inline-block;
  top: 74%;
  transform: translateX(-50%);
  filter: blur(22px);
}
.about-token-img img {
  width: 909px;
  /* max-width: 100%; */
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* ecosystem-sec */
.ecosystem-sec {
  color: #fff;
  text-align: center;
  padding: 100px 0;
  max-width: 1100px;
  margin: auto;
}
.eco-header h3 {
  font-size: 35px;
  color: #fff;
}
.eco-header p {
  font-size: 18px;
  color: #cccccc;
}
.eco-content h6 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.eco-content h3 {
  font-size: 35px;
  color: #fff;
  margin-bottom: 10px;
}
.eco-content p {
  font-size: 16px;
  color: #ccc;
}
.token-img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.token-img img:hover {
  transform: scale(0.9);
}
.token-ring-img img {
  width: 100%;
  animation: smoothRotatePause 30s linear infinite;
}
.token-tab-img img {
  width: 100%;
  transform: none;
  transition: all 0.3s ease;
}
.token-tab-img img:hover {
  width: 100%;
  transform: translateX(28px);
}
.ecosystem-sec .row {
  gap: 80px;
}
/* tokenomics-sec */
.tokenomics-sec {
  max-width: 700px;
  margin: auto;

  opacity: 0;
  transform: translateY(50px);
  transition: all 2s ease;
}
.tokenomics-sec.show {
  opacity: 1;
  transform: translateY(0);
}
.tokenomics-sec h2 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 15px;
}
.tokenomics-sec p {
  font-size: 14px;
  margin-bottom: 15px;
}
.tokenomics-sec h4 {
  font-size: 22px;
  margin-bottom: 60px;
}

.token-bar {
  text-align: left;
}

.token-label {
  margin-bottom: 5px;
  font-size: 10px;
  color: #9ba1a5;
}

.bar {
  width: 100%;
  height: 31px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgb(65, 63, 217);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.bar span {
  display: block;
  height: 100%;
  width: 0;
  background: rgb(65, 63, 217);
  transition: width 2s ease-in-out;
}

.token-value {
  font-weight: 700;
  font-size: 16px;
  margin-top: 6px;
}
.bg-gradient-blue {
  background: linear-gradient(
    149deg,
    #0d0baa66 0%,
    #0d0d0dcc 29%,
    #0d0d0dcc 74%,
    #0d0aab57 100%
  );
  border-radius: 20px;
}

.card-body p {
  border-bottom: 1px solid oklab(69.6421% -0.0739159 -0.154811/0.175686);
  padding: 9px;
  font-size: 16px;
}
.card-button {
  position: relative;
}
.card-address {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #09096d;
  padding: 20px 10px;
  max-width: 500px;
  margin: auto;
  border-radius: 8px;
}
.card-address i {
  font-size: 20px !important;
  cursor: pointer;
}
.card-contact-btn {
  position: absolute;
  top: -24%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #000;
  padding: 3px 13px;
  border-radius: 8px;
  font-size: 14px;
}
/* mtht-slider-sec */
.mtht-slider-sec {
  background: #000;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.mtht-slider-sec .swiper {
  width: 100%;
  margin: auto;
}

.mtht-slider-sec .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 0 60px;
}

.mtht-slider-sec h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mtht-slider-sec p {
  line-height: 1.7;
  font-size: 16px;
  color: #ccc;
  max-width: 1300px;
}

.mtht-slider-sec .swiper-button-next,
.mtht-slider-sec .swiper-button-prev {
  color: #fff;
  transition: 0.3s;
  width: 10px;
}
.mtht-slider-sec .swiper-button-next:after,
.mtht-slider-sec .swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: #777;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
/* Custom-Faq-sec */
.custom-faq-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.custom-faq-section.show {
  opacity: 1;
  transform: translateY(0);
}
.custom-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 930 358'><path d='M459 0C712.499 0 918 34.474 918 77C918 119.526 712.499 154 459 154C205.501 154 0 119.526 0 77C0 34.474 205.501 0 459 0Z' transform='translate(6.309 102.112) rotate(-13 459 77)' fill='rgb(13,11,170)'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  z-index: 1;
  filter: blur(50px);
  opacity: 0.1;
  transform: none;
  transform-origin: 50% 50% 0px;
  top: calc(40% - 159px);
  left: calc(50.0542% - 465px);
  pointer-events: none;
}
.custom-accordion.container {
  max-width: 800px;
  margin-top: 60px;
  z-index: 2;
}
.custom-faq-section h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.custom-faq-section p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
}

.custom-accordion .accordion-item {
  background-color: #1b1b1d;
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
}
.custom-accordion .accordion-button {
  background-color: #121214;
  color: #fff;
  font-weight: 500;
  /* border: none; */
  box-shadow: none;
  border: 1px solid #222;
  border-radius: 6px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #1b1b1d;
  border-bottom: navajowhite;
  color: #fff;
}

.custom-accordion .accordion-body {
  background-color: #1b1b1d;
  color: #fff;
  font-weight: 500;
  /* border: none; */
  box-shadow: none;
  border: 1px solid #222;
  border-radius: 6px;
  border-top: none;
  text-align: start;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-faq-badge {
  background-color: #121214;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}
.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}
/* ready-sec */
.custom-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  max-width: 800px;
  margin: auto;
  background: linear-gradient(
    149deg,
    #0d0baa66 0%,
    #0d0d0dcc 29%,
    #0d0d0dcc 74%,
    #0d0aab57 100%
  );
  border-radius: 20px;
}

.custom-cta-box {
  padding: 80px 40px;

  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.custom-cta-box h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #fff;
}

.custom-cta-box p {
  color: #ccc;

  font-size: 18px;
  max-width: 500px;
  margin: auto;
  margin-bottom: 35px;
}

.custom-cta-button {
  background-color: rgb(13, 11, 170);
  color: #fff;
  padding: 9px 13px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.custom-cta-button:hover {
  background-color: #3d3dff;
  transform: translateY(-2px);
}

.custom-cta-button svg {
  width: 18px !important;
  height: 18px;
}
@keyframes smoothRotatePause {
  0% {
    transform: rotate(0deg);
  }
  92.15% {
    transform: rotate(1800deg);
  }
  100% {
    transform: rotate(1800deg);
  }
}

/* footer */
.custom-footer {
  background: radial-gradient(
    50% 50% at 50% 3.4%,
    rgba(13, 11, 170, 0.3) 0%,
    rgba(171, 171, 171, 0) 100%
  );
  padding: 80px 20px 40px;
  border: 1px solid #222;
  margin-top: 80px;
  margin-bottom: 3rem;
}

.footer-logo img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.footer-desc {
  color: #ccc;
  max-width: 350px;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-heading {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* Newsletter */
.newsletter-input {
  display: flex;
  align-items: center;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}

.newsletter-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  font-size: 0.95rem;
}

.newsletter-input input::placeholder {
  color: #888;
}

.newsletter-input button {
  background-color: #1a18d6;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-input button:hover {
  background-color: #2927f3;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #111;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}
/* about-hero */
.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 180px 40px 100px;
  text-align: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  /* background: radial-gradient(
    farthest-corner at 50% 0%,
    #23617d 0%,
    #112031 100%
  ); */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #0099ff0a;
}
.about-hero h4 {
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
}
.about-hero h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-hero p {
  color: #ccc;
  font-size: 18px;
  max-width: 600px;
  margin: auto;
}
/* ---------- LIGHT RAYS BACKGROUND ---------- */
.light-rays,
.light-rays > *::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.light-rays {
  pointer-events: none;
  filter: blur(0.9rem);
  z-index: 1;
}

.light-rays > * {
  --deg: 0;
  --length: 0rem;
  --thickness: 20px;
  --duration: 2s;
  --delay: 1s;
  --rotate: 0deg;
  --degRange: 72.5deg;
  --spreadRange: 40vw;
  position: absolute;
  transform-style: preserve-3d;
  perspective: 500px;
  width: var(--thickness);
  height: calc(20% + 370px + var(--length));
  left: 50%;
  transform: translateX(
      calc(
        -50% + var(--deg) * var(--spreadRange) * -1 + 0.5 * var(--spreadRange)
      )
    )
    translateY(-100px)
    rotateZ(calc(var(--degRange) * -0.5 + var(--deg) * var(--degRange)))
    rotateX(0.01deg);
  transform-origin: center -100px;
  mix-blend-mode: screen;
  animation: shimmer linear var(--duration) calc(var(--delay) * -1) infinite
      alternate forwards,
    rotate ease-in-out calc(var(--duration) * 3.14) calc(var(--delay) * -1)
      infinite alternate forwards;
}

.light-rays > *::before {
  content: "";
  background: #3b5a92;
  transform-origin: top center;
  transform: rotateX(40deg);
}

.light-rays > *:nth-child(1) {
  --deg: 0.4896718372;
  --thickness: 40.8783700614px;
  --length: -3.9888684464px;
  --duration: 1.2393265617s;
  --delay: 2.003750964s;
  --rotate: 0.063844361deg;
}
.light-rays > *:nth-child(2) {
  --deg: 0.421281079;
  --thickness: 53.2323190404px;
  --length: -7.5343490055px;
  --duration: 1.74673234s;
  --delay: 2.0808564459s;
  --rotate: -0.217669417deg;
}
.light-rays > *:nth-child(3) {
  --deg: 0.3727681724;
  --thickness: 37.7586294464px;
  --length: 2.3049203037px;
  --duration: 1.3523458572s;
  --delay: 2.2425697483s;
  --rotate: -0.6914230142deg;
}
.light-rays > *:nth-child(4) {
  --deg: 0.5657515019;
  --thickness: 37.2851310799px;
  --length: -33.1361308427px;
  --duration: 1.1799323142s;
  --delay: 2.5996805039s;
  --rotate: 3.9086117526deg;
}
.light-rays > *:nth-child(5) {
  --deg: 0.4380974194;
  --thickness: 38.5098400964px;
  --length: -41.3946508728px;
  --duration: 1.7127832832s;
  --delay: 2.6365691187s;
  --rotate: -2.9414825642deg;
}
.light-rays > *:nth-child(6) {
  --deg: 0.4583888763;
  --thickness: 53.6806160106px;
  --length: -36.0847513138px;
  --duration: 2.3509276913s;
  --delay: 2.234588143s;
  --rotate: -3.8810769569deg;
}
.light-rays > *:nth-child(7) {
  --deg: 0.3437486818;
  --thickness: 41.0889068111px;
  --length: 45.9534065208px;
  --duration: 1.3572511592s;
  --delay: 2.5762457079s;
  --rotate: -3.4077837558deg;
}
.light-rays > *:nth-child(8) {
  --deg: 0.319522701;
  --thickness: 43.596057441px;
  --length: -10.6432238355px;
  --duration: 1.9384222087s;
  --delay: 2.9125857565s;
  --rotate: -0.6773699377deg;
}
.light-rays > *:nth-child(9) {
  --deg: 0.0186344786;
  --thickness: 38.0791932119px;
  --length: -32.7839339191px;
  --duration: 1.1832607354s;
  --delay: 2.0699682397s;
  --rotate: -1.3646284529deg;
}
.light-rays > *:nth-child(10) {
  --deg: 0.5170217829;
  --thickness: 28.2121076487px;
  --length: -12.1060144478px;
  --duration: 2.3562619419s;
  --delay: 2.8234295047s;
  --rotate: 2.8512782399deg;
}
.light-rays > *:nth-child(11) {
  --deg: 0.3953614006;
  --thickness: 30.3260441467px;
  --length: 29.0474739649px;
  --duration: 1.7787731907s;
  --delay: 2.6481795215s;
  --rotate: -1.4064298124deg;
}
.light-rays > *:nth-child(12) {
  --deg: 0.4173659337;
  --thickness: 48.0939637617px;
  --length: -0.2664826664px;
  --duration: 2.2390028979s;
  --delay: 2.3091196879s;
  --rotate: -2.0519126579deg;
}
.light-rays > *:nth-child(13) {
  --deg: 0.2278909092;
  --thickness: 38.4992674252px;
  --length: -4.8188545453px;
  --duration: 1.7671002602s;
  --delay: 2.5027527148s;
  --rotate: 1.9404361109deg;
}
.light-rays > *:nth-child(14) {
  --deg: 0.0014434247;
  --thickness: 31.52391903px;
  --length: -48.8447532011px;
  --duration: 2.3764182553s;
  --delay: 2.0675713985s;
  --rotate: 1.6597817492deg;
}
.light-rays > *:nth-child(15) {
  --deg: 0.9956508879;
  --thickness: 51.2613369826px;
  --length: 19.6783025535px;
  --duration: 1.2400332985s;
  --delay: 2.3990643009s;
  --rotate: 3.0735680331deg;
}
.light-rays > *:nth-child(16) {
  --deg: 0.1356550867;
  --thickness: 32.5468905121px;
  --length: -11.0156961858px;
  --duration: 1.5653056238s;
  --delay: 2.06625987s;
  --rotate: 1.8944089862deg;
}
.light-rays > *:nth-child(17) {
  --deg: 0.0444026312;
  --thickness: 38.3950386301px;
  --length: 43.3983982595px;
  --duration: 1.5233919286s;
  --delay: 2.450581404s;
  --rotate: -0.2376267223deg;
}
.light-rays > *:nth-child(18) {
  --deg: 0.7597814096;
  --thickness: 46.5875160892px;
  --length: 17.6789861523px;
  --duration: 1.638840401s;
  --delay: 2.5459931248s;
  --rotate: 2.4529954521deg;
}
.light-rays > *:nth-child(19) {
  --deg: 0.8559198459;
  --thickness: 41.73786154px;
  --length: -25.1184416971px;
  --duration: 2.3252959886s;
  --delay: 2.437136614s;
  --rotate: 0.0913954346deg;
}
.light-rays > *:nth-child(20) {
  --deg: 0.5107320795;
  --thickness: 42.8407323924px;
  --length: -29.3407304089px;
  --duration: 1.7251410838s;
  --delay: 2.9075705593s;
  --rotate: -0.1155624991deg;
}
.light-rays > *:nth-child(21) {
  --deg: 0.8532876526;
  --thickness: 32.05059247px;
  --length: 7.3869995528px;
  --duration: 2.1606364458s;
  --delay: 2.833952368s;
  --rotate: -3.451098431deg;
}
.light-rays > *:nth-child(22) {
  --deg: 0.8621206509;
  --thickness: 35.0096121382px;
  --length: -12.0237353929px;
  --duration: 1.5327348999s;
  --delay: 2.7382298145s;
  --rotate: 1.2729332994deg;
}
.light-rays > *:nth-child(23) {
  --deg: 0.2351342708;
  --thickness: 36.5915818512px;
  --length: 4.1007505189px;
  --duration: 1.2839037654s;
  --delay: 2.185326169s;
  --rotate: -1.7023998852deg;
}
.light-rays > *:nth-child(24) {
  --deg: 0.8769650476;
  --thickness: 53.0418539121px;
  --length: 36.0199187952px;
  --duration: 2.137610121s;
  --delay: 2.7870843222s;
  --rotate: -0.5550857582deg;
}
.light-rays > *:nth-child(25) {
  --deg: 0.838482212;
  --thickness: 50.9160567264px;
  --length: -6.8697410902px;
  --duration: 2.0657731105s;
  --delay: 2.0176304425s;
  --rotate: -1.5294456541deg;
}
.light-rays > *:nth-child(26) {
  --deg: 0.1370434933;
  --thickness: 49.3868686552px;
  --length: -41.7054189029px;
  --duration: 2.1503105788s;
  --delay: 2.9634626097s;
  --rotate: 3.628781106deg;
}
.light-rays > *:nth-child(27) {
  --deg: 0.9476997404;
  --thickness: 36.451059964px;
  --length: 1.4441267637px;
  --duration: 1.7293769733s;
  --delay: 2.3122748957s;
  --rotate: -2.7493008541deg;
}
.light-rays > *:nth-child(28) {
  --deg: 0.592810749;
  --thickness: 52.0056436093px;
  --length: 33.9619359671px;
  --duration: 2.4687840492s;
  --delay: 2.1181332108s;
  --rotate: -2.9805042593deg;
}
.light-rays > *:nth-child(29) {
  --deg: 0.6470577412;
  --thickness: 53.8792256129px;
  --length: -6.3601350008px;
  --duration: 2.4524273397s;
  --delay: 2.5496361353s;
  --rotate: 3.3958030641deg;
}
.light-rays > *:nth-child(30) {
  --deg: 0.4656301785;
  --thickness: 30.7323018207px;
  --length: 20.9861140898px;
  --duration: 1.4636212366s;
  --delay: 2.6184665435s;
  --rotate: -1.1971869134deg;
}
.light-rays > *:nth-child(31) {
  --deg: 0.3813071779;
  --thickness: 34.0916823975px;
  --length: 26.8810822962px;
  --duration: 2.3637931514s;
  --delay: 2.0964429624s;
  --rotate: -3.1395865233deg;
}
.light-rays > *:nth-child(32) {
  --deg: 0.1254020026;
  --thickness: 38.1135044975px;
  --length: -2.80968867px;
  --duration: 1.8498578442s;
  --delay: 2.5293249405s;
  --rotate: 2.6393401734deg;
}

/* Animations */
@keyframes shimmer {
  0% {
    opacity: 0.33;
  }
  100% {
    opacity: 0.03;
  }
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: var(--rotate);
  }
}
/* about-who-content */
.about-who-content {
  padding: 100px 20px;
}
.about-who-content h2 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}
.about-who-content p {
  font-size: 18px;
  color: #ccc;
}
.about-who-img svg {
  width: 484px;
  margin-left: 20px;
}

/* multi-utility*/
.multi-utility {
  padding: 100px 0;
}
.multi-utility-box {
  background: radial-gradient(
    50% 75% at 98.9% 100%,
    rgba(13, 11, 170, 0.3) 0%,
    rgba(13, 13, 13, 0.8),
    rgba(13, 13, 13, 0.8) 100%
  );
  border: 1px solid #222;
  border-radius: 8px;
  padding: 20px 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.multi-utility-box.show {
  opacity: 1 !important;
  transform: translateY(0);
}
.multi-utility-box h3 {
  font-size: 23px;
  color: #fff;
}
.multi-utility-box p {
  font-size: 16px;
  color: #ccc;
}
/* why-us */
.why-us {
  padding: 100px 0 10px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.why-us h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 25px;
}
.why-us h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}
.why-us p {
  color: #ccc;
  font-size: 18px;
}
/* key-points */
.key-points {
  background: radial-gradient(
    50% 50% at 50% 3.4%,
    rgba(13, 11, 170, 0.3) 0%,
    rgba(171, 171, 171, 0) 100%
  );
  padding: 20px 30px;
  border: 1px solid #222;
  margin-top: 80px;
  margin-bottom: 3rem;
}
.key-points h4 {
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 35px;
}
.key-points ul {
  padding: 0 !important;
}
.key-points ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  justify-content: start;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}
.key-points ul li svg {
  width: 20px !important;
}
.key-points li.show {
  opacity: 1;
  transform: translateX(0);
}
/* contact-sec */
.contact-sec {
  padding: 180px 20px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.contact-sec h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 25px;
}
.contact-sec h1 {
  color: #fff;
  font-size: 70px;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-sec p {
  color: #ccc;
  font-size: 18px;
  max-width: 600px;
  margin: auto;
}
.contact-sec h6,
.contact-sec h1,
.contact-sec p {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s ease;
}

.contact-sec.show h6,
.contact-sec.show h1,
.contact-sec.show p {
  opacity: 1;
  transform: translateX(0);
}
.master-form {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 1px solid #222;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.master-form.show {
  opacity: 1;
  transform: translateY(0);
}
.master-form label {
  color: #fff;
  display: flex;
}
.master-form input {
  padding: 15px 10px;
}
.form-control {
  background-color: #000;
  border: 1px solid #333;
  color: #fff;
}
.form-control:focus {
  background-color: #000;
  color: white;
  border-color: #007bff;
  box-shadow: none;
}
.btn-primary {
  background-color: #0d0baa;
  border: none;
  width: 100%;
}
.btn-primary:hover {
  background-color: rgba(51, 51, 51, 0.85);
}
video.bg-video {
  width: 900px;
  overflow: hidden;
}
/* login form */
.login-form {
  padding: 120px 20px;
  max-width: 700px;
  margin: auto;
}
.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}
.auth-card h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}
.auth-card h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
}
.auth-card input {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  /* border: none; */
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
  border: 1px solid #333;
}
.auth-card button {
  width: 100%;
  background: #0d0baa;
  border: none;
  padding: 12px;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.auth-card ::placeholder {
  color: white;
}
.auth-card button:hover {
  transform: scale(1.01);
}
.auth-card p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #fff;
}
.auth-card a {
  color: #fff;
  text-decoration: none;
}
.login-icon button {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 50% 50%, #0a0a0f, #050507);
  border: 2px solid rgba(170, 170, 255, 0.3);
  box-shadow: 0 0 12px rgba(150, 150, 255, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  padding: 7px 25px;
  border-radius: 50px;
}
/* Rsponshive */

@media (max-width: 1024px) {
  .navbar-nav {
    text-align: left;
    padding-top: 30px;
  }
  .ecosystem-sec {
    padding: 100px 20px;
  }
  .ecosystem-sec .row {
    gap: 0;
  }
}
@media (max-width: 972px) {
  video.bg-video {
    width: 900px;
    overflow: hidden;
    max-width: 100%;
  }
}

@media (max-width: 792px) {
  .hero-contant {
    padding: 20px;
  }
  .hero-img img {
    width: 100%;
  }
  .token-img img {
    width: 100%;
  }
  .token-ring-img img {
    width: 100%;
  }
  .about-token-img img {
    width: 400px;
  }
  .about-token-img {
    top: 87%;
  }
  .tokenomics-ring-img img {
    width: 100%;
  }
  .card-address {
    display: block;
    gap: 30px;
    background: #09096d;
    padding: 20px 20px;
    max-width: 500px;
    margin: auto;
    border-radius: 8px;
    font-size: 14px;
  }
  .token-ring-img img {
    width: 100%;
    animation: smoothRotatePause 30s linear infinite;
    animation: none;
  }
  .hero-heading h1 {
    font-size: 45px;
  }
  .hero-img .ring.inner {
    width: 200px;
    height: 250px;
    top: 8%;
  }
  .hero-img .ring.outer {
    width: 200px;
    height: 250px;
    top: 8%;
  }
  p {
    font-size: 16px !important;
  }
  .hero-btn a {
    font-size: 16px;
    padding: 15px 24px;
  }
  .hero-sec {
    padding: 80px 0;
  }
  .about-token-sec {
    padding-bottom: 80px;
  }
  .about-token h3 {
    font-size: 28px;
  }
  .about-token {
    padding: 10px 10px;
  }
  .ecosystem-sec {
    padding: 80px 20px;
  }
  .eco-header h3 {
    font-size: 23px;
  }
  .eco-content h3 {
    font-size: 28px;
  }
  .tokenomics-sec {
    max-width: 100%;
  }
  .mtht-slider-sec .swiper-slide {
    padding: 0 20px;
  }
  .mtht-slider-sec h2 {
    font-size: 22px;
  }
  .mtht-slider-sec {
    padding: 80px 0px;
  }
  .mtht-slider-sec p {
    max-width: 100%;
    margin-bottom: 42px;
  }
  .custom-faq-section {
    padding: 10px 20px;
  }
  .custom-faq-section h2 {
    font-size: 35px;
  }
  .custom-cta-section {
    margin-top: 20px;
  }
  .custom-cta-box {
    padding: 30px 20px;
  }
  .custom-cta-box h2 {
    font-size: 28px;
  }

  .custom-footer {
    padding: 35px 20px 27px;
    border: 1px solid #222;
    margin-top: 39px;
    margin-bottom: 1rem;
  }
  .about-hero {
    padding: 100px 20px 60px;
  }
  .about-hero h1 {
    font-size: 35px;
  }
  .about-hero {
    padding: 157px 20px 60px;
  }
  .light-rays,
  .light-rays > *::before {
    top: -2%;
  }
  .about-who-content {
    padding: 60px 20px;
  }
  .about-who-content h2 {
    font-size: 35px;
  }
  .why-us {
    padding: 10px 20px 20px;
    max-width: 100%;
  }
  .why-us h2 {
    color: #fff;
    font-size: 35px;
  }
  .key-points {
    margin-top: 25px;
    margin-bottom: 1rem;
  }
  .contact-sec {
    padding: 120px 20px 20px;
    max-width: 100%;
  }
  .contact-sec h1 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .master-form {
    padding: 20px;
    max-width: 100%;
    border: 1px solid #222;
    margin-top: 20px;
  }
  .master-form input {
    padding: 5px 10px;
  }
  .master-form label {
    font-size: 14px;
  }
  .auth-card {
    padding: 20px;
  }
  .auth-card h3 {
    font-size: 18px;
  }
  .auth-card button {
    padding: 8px;
  }
  .login-form {
    padding: 117px 20px 10px;
  }
  .login-icon button {
    font-size: 14px;
  }
  .individual-bubble {
  display:none;
}
.multi-utility {
    padding: 0px 0px 20px;
}
video.bg-video {
    display: none;
}
.multi-utility-box {
   
    margin-bottom: 10px;
}
}
