/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 100px 10%;
  position: relative;
  z-index: 2;
}

/* Particles Background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Behind content but visible site-wide */
  pointer-events: none; /* So it doesn't interfere with clicks */
}

/* Navbar */
header {
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2; /* Above particles canvas */
}

.logo-img {
  width: 50px; /* Adjust based on logo size */
  height: 50px;
  margin-right: 10px; /* Space between logo and text */
  filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5)); /* Neon glow */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.7); /* Neon glow */
}

.logo-text span {
  color: #ff00e6;
  text-shadow: 0 0 10px rgba(255, 0, 230, 0.7); /* Glow for pink */
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo-img {
    width: 40px; /* Smaller logo for mobile */
    height: 40px;
    margin-right: 8px;
  }
  .logo-text {
    font-size: 1.4rem; /* Smaller text for mobile */
  }
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00f5ff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
  position: relative;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 20px #00f5ff;
}

#hero p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(45deg, #00f5ff, #ff00e6);
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.7);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00f5ff;
  color: #00f5ff;
}

/* About */
#about {
  text-align: center;
}

#about p {
  margin: 10px auto;
  max-width: 800px;
  color: #aaa;
}

/* Utilities */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.utility-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.utility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.utility-card h3 {
  margin-bottom: 10px;
  color: #00f5ff;
}

/* Tokenomics */
.tokenomics-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: center;
  text-align: left; /* Align text left for label-counter pairs */
  justify-items: start; /* Start-align items for consistency */
}

.tokenomics-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between label and counter */
}

.tokenomics-item p {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #ff00e6;
  text-shadow: 0 0 10px rgba(255, 0, 230, 0.7);
}

/* Optional: Cyan for new counters to differentiate */
.counter[data-target="15"],
.counter[data-target="7"],
.counter[data-target="3"] {
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.7);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .tokenomics-stats {
    grid-template-columns: 1fr; /* Stack items on mobile */
    gap: 15px;
  }
  .tokenomics-item {
    gap: 8px;
  }
  .tokenomics-item p {
    font-size: 1rem;
  }
  .counter {
    font-size: 1.8rem;
  }
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #ff00e6;
  text-shadow: 0 0 10px #ff00e6;
}
.counter[data-target="15"],
.counter[data-target="7"],
.counter[data-target="3"] {
  color: #00f5ff; /* Cyan for new counters */
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.7);
}

/* Roadmap */
.timeline {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.phase {
  padding: 20px;
  border-left: 4px solid #00f5ff;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.phase:hover {
  transform: translateX(10px);
}

/* Community */
#community {
  text-align: center;
}

#community p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #bbb;
}

/* Footer */
footer {
  text-align: center;
  padding: 25px;
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer .socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .socials a {
  color: #00f5ff;
  font-weight: 500;
}

footer .socials a:hover {
  color: #ff00e6;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    width: 200px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .nav-links.open {
    height: 250px;
  }

  .hamburger {
    display: flex;
  }

  /* Adjust buy button for mobile */
  #buy-btn {
    margin-right: 20px; /* Space before hamburger */
  }
}
#tokenChart {
  max-width: 300px;
  margin: 20px auto;
}