@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: #000;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

h1, h2, h3, h4, h5 {
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }

p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #dcdcdc;
}

/* Particles background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}
body:not(.home) #particles-js {
  display: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00d4ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #00d4ff;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Button Section */
.buy-button-wrapper {
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.buy-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff, #007bff);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
  margin: 10px;
  font-size: 1.1rem;
}
.buy-now-btn:hover {
  background: linear-gradient(135deg, #007bff, #00bfff);
  transform: translateY(-2px);
}

/* Section Styling */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.section p, .section ul {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #dcdcdc;
}
.section ul {
  list-style-type: disc;
  padding-left: 2rem;
  text-align: left;
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Tokenomics Table */
.allocation {
  overflow-x: auto;
  margin-top: 2rem;
}
.allocation table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.allocation th,
.allocation td {
  border: 1px solid #555;
  padding: 0.8rem;
  text-align: center;
}
.allocation th {
  background-color: #0e0e3a;
  color: #00d4ff;
}
.allocation tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
  padding: 2rem;
  background-color: #000
  text-align: center;
  color: white;
}
.social-icons {
  margin-top: 2em;
}
.social-icons a {
  margin:  0.9
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}

/* Roadmap */
#roadmap {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 40px 20px;
  color: #fff;
}
.roadmap-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.roadmap-phase {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #0ff;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.roadmap-phase:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #0ff;
}
.roadmap-phase h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #0ff;
}
.roadmap-phase p {
  font-size: 1rem;
  color: #ddd;
}

/* How to Buy */
#how-to-buy {
  padding: 60px 20px;
  color: white;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
}
#how-to-buy h2 {
  font-size: 2.2rem;
  color: #00ffff;
  margin-bottom: 20px;
}
#how-to-buy ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}
#how-to-buy ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contract Address + Copy */
.contract-box {
  display: flex;
  align-items: center;
  background-color: #0e0e3a;
  padding: 0.5rem;
  border: 1px solid #00d4ff;
  border-radius: 8px;
  margin-top: 1rem;
  overflow-x: auto;
}
.contract-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #00ffff;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  outline: none;
}
.copy-btn {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 212, 255, 0.4);
}
.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 212, 255, 0.6);
}

/* Mobile styles */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }

  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1rem; }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar {
    flex-direction: column;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .contract-box {
    flex-direction: column;
    align-items: stretch;
  }

  .copy-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Bring main content above particles */
.hero,
.hero-content,
.how-to-buy,
.about,
.tokenomics {
  position: relative;
  z-index: 2;
}
body.how-to-buy #particles-js {
  display: none;
}
