:root {
  --primary-color: #d81b60;
  --secondary-color: #5e35b1;
  --dark-color: #1a1a2e;
  --light-color: #ffffff;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--dark-color);
  color: var(--light-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.glow {
  text-shadow: 0 0 10px rgba(216, 27, 96, 0.7), 0 0 20px rgba(216, 27, 96, 0.5);
}

.neon-border {
  box-shadow: 0 0 5px rgba(216, 27, 96, 0.7), 0 0 10px rgba(216, 27, 96, 0.5);
}

.btn-hover {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-hover:hover:after {
  left: 100%;
}

.gradient-bg {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.futuristic-card {
  background: rgba(30, 30, 46, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.futuristic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  background: rgba(30, 30, 46, 0.95);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 1000;
  overflow-y: auto;
}

.menu-open {
  transform: translateX(0);
}

.hamburger {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  cursor: pointer;
  background: rgba(30, 30, 46, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
  min-height: 100vh;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.page-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.5);
}

.token-spin {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

 {
  .section {
    page-break-inside: avoid;
    min-height: auto;
  }

  .hamburger,
  .page-indicator {
    display: none;
  }

  .menu-container {
    display: none;
  }
}

.bg-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: rotate(30deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    top: -100%;
  }
  20%,
  100% {
    left: 100%;
    top: 100%;
  }
}

.pulse-glow {
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(216, 27, 96, 0.7);
  }
  100% {
    box-shadow: 0 0 20px rgba(216, 27, 96, 0.9), 0 0 30px rgba(94, 53, 177, 0.7);
  }
}

/* New animations and effects */
.crypto-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #d81b60, #5e35b1);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 1;
}

.crypto-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(45deg, #d81b60, #5e35b1); */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.crypto-btn:hover::before {
  opacity: 1;
}

.crypto-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(216, 27, 96, 0.4);
}

.crypto-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: conic-gradient(
    transparent,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crypto-btn:hover::after {
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.banner-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.banner-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(94, 53, 177, 0.3),
    transparent 60%
  );
  animation: pulse 5s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.hexagon {
  position: absolute;
  width: 100px;
  height: 57.74px;
  background-color: rgba(216, 27, 96, 0.1);
  margin: 28.87px 0;
  border-left: solid 2px rgba(216, 27, 96, 0.4);
  border-right: solid 2px rgba(216, 27, 96, 0.4);
  opacity: 0.4;
  pointer-events: none;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 70.71px;
  height: 70.71px;
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 13.64px;
}

.hexagon:before {
  top: -35.36px;
  border-top: solid 2.83px rgba(216, 27, 96, 0.4);
  border-right: solid 2.83px rgba(216, 27, 96, 0.4);
}

.hexagon:after {
  bottom: -35.36px;
  border-bottom: solid 2.83px rgba(216, 27, 96, 0.4);
  border-left: solid 2.83px rgba(216, 27, 96, 0.4);
}

.chain-link {
  position: absolute;
  width: 20px;
  height: 40px;
  border: 2px solid rgba(94, 53, 177, 0.5);
  border-radius: 10px;
  opacity: 0.5;
  transform: rotate(45deg);
  pointer-events: none;
}

.team-card {
  background: rgba(30, 30, 46, 0.7);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.team-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.testimonial-card {
  position: relative;
  background: rgba(30, 30, 46, 0.7);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 100px;
  color: rgba(216, 27, 96, 0.3);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f3ba2f, #ffce54);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(243, 186, 47, 0.5);
  opacity: 0.8;
  z-index: -1;
  animation: float-coin 7s infinite ease-in-out;
}

.coin::after {
  content: "₿";
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}

@keyframes float-coin {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.eth-coin {
  background: linear-gradient(45deg, #627eea, #a4b1f5);
}

.eth-coin::after {
  content: "Ξ";
}

/* Contact form styles */
.contact-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: white;
  transition: all 0.3s ease;
}

.contact-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(216, 27, 96, 0.3);
}

.footer {
  background: rgba(20, 20, 35, 0.95);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    var(--secondary-color),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

/* Banner particles animation */
.glowing-particle {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
  opacity: 0;
  animation: particle-animation 5s infinite ease-out;
}

@keyframes particle-animation {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) translateX(var(--tx)) scale(0);
  }
}

/* Cyberpunk-style button */
.cybr-btn {
  --primary: hsl(
    var(--primary-hue),
    85%,
    calc(var(--primary-lightness, 50) * 1%)
  );
  --shadow-primary: hsl(var(--shadow-primary-hue), 90%, 50%);
  --primary-hue: 330;
  --primary-lightness: 50;
  --shadow-primary-hue: 330;
  --font-size: 18px;
  --shadow: 0 0 10px 0 rgba(var(--shadow-primary), 0.4);
  --padding: 0.75em 2em;
  --gap: 0;
  --clip: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 calc(100% - 15px));

  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size);
  font-weight: 500;
  padding: var(--padding);
  color: white;
  background: var(--primary);
  clip-path: var(--clip);
  text-decoration: none;
  transition: clip-path 0.3s, background 0.3s;
}

.cybr-btn:hover {
  --primary-lightness: 60;
  --clip: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cybr-btn:before,
.cybr-btn:after {
  content: "";
  position: absolute;
  background: var(--primary);
}

.cybr-btn:before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform 0.3s;
}

.cybr-btn:hover:before {
  transform: scaleX(1);
}

.cybr-btn:after {
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.3s;
}

.cybr-btn:hover:after {
  transform: scaleX(1);
}

.glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.1) 1px,
    rgba(0, 0, 0, 0.05) 2px
  );
  pointer-events: none;
  opacity: 0.5;
  z-index: 999;
  display: none;
}

.glitch-btn:hover ~ .glitch-overlay {
  display: block;
  animation: glitch 0.3s linear;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
    opacity: 0.5;
  }
  40% {
    transform: translate(-5px, -5px);
    opacity: 0.8;
  }
  60% {
    transform: translate(5px, 5px);
    opacity: 0.4;
  }
  80% {
    transform: translate(5px, -5px);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 0.5;
  }
}

/**************
Custom Styles
***************/
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-image {
  width: 45%;
  mask-image: linear-gradient(black, transparent);
}
@media (max-width: 575.99px) {
  .hero-image {
    width: 100%;
  }
}
.platform-logo {
  position: relative;
  top: 30px;
  left: 30px;
}
@media (max-width: 575.99px) {
  .platform-logo {
    top: 20px;
    left: 20px;
  }
  .hamburger {
    top: 20px;
    right: 20px;
  }
}
@media (min-width: 1400px) {
  .platform-logo {
    top: 20px;
    left: 182px;
  }
  .hamburger {
    top: 20px;
    right: 182px;
  }
}
.howItWorks__promovideoWrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
  /* transform: translateY(50px);
  opacity: 0; */
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
}

.howItWorks__promovideoWrapper video {
  width: 100%;
  display: block;
}

.platform-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transform: translateY(50px);
  opacity: 0;
}
.platform-card.animated {
  transform: translateY(0);
  opacity: 1;
}
.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
  border-color: var(--primary-color);
}
.platform-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.platform-card:hover i {
  transform: scale(1.2);
  color: var(--secondary-color);
}
#investors.section {
  min-height: auto;
}
