/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: linear-gradient(135deg, #0B0C2A, #1A1B41);
  color: #fff;
  overflow-x: hidden;
}
a {
  color: #00F3FF;
  text-decoration: none;
}

/* Animated Background */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at center, #00F3FF20 0%, transparent 70%);
  animation: twinkle 1000s ;
}
@keyframes twinkle {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 5% 5rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.cta-btn {
  background: #00F3FF;
  color: #000;
  padding: 0.8rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  margin: 10px;
}
.cta-btn:hover {
  background: #00cfe0;
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  text-align: center;
}
.icon-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.icon-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
}

/* Token Market */
.tokens-section {
  padding: 5rem 5%;
  text-align: center;
}
.token-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.token-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  text-align: center;
}
.token-card button {
  background: #00F3FF;
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 5%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}
.testimonial-box {
  margin: 2rem 0;
}
.badges img {
  margin: 1rem 1rem 0 1rem;
}

/* Footer */
.footer {
  background: #000;
  padding: 2rem 5%;
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.socials i {
  margin: 0 1rem;
  font-size: 1.5rem;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* Responsive */
@media (max-width: 768px) {
  .icon-grid, .token-grid {
    flex-direction: column;
    align-items: center;
  }
}


