body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 40px;
}

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

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero-banner {
  max-width: 100%;
  height: auto;
}

.tagline {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
}
.section {
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
  color: #fff;
  border-radius: 12px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.dark-section {
  background: rgba(20, 20, 20, 0.8);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ffc8;
}

.feature-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.feature-list li {
  margin: 0.8rem 0;
}

.tokenomics-chart {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 12px;
}
.tokenomics-note {
  max-width: 800px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-left: 4px solid #00ffc8;
  border-radius: 8px;
  color: #ddd;
  text-align: left;
}
.tokenomics-note u {
  text-decoration-color: #00ffc8;
}
.about-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 1rem auto;
  color: #ddd;
  font-size: 1rem;
}

.about-list li {
  margin: 0.75rem 0;
  padding-left: 1rem;
  text-indent: -1rem;
}
.video-container {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffc8;
}

.video-caption {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.15);
}

footer {
  background: rgba(0, 0, 0, 0.7);
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}
.roadmap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  text-align: left;
}

.phase {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #00ffc8;
}

.phase h3 {
  color: #00ffc8;
  margin-bottom: 0.5rem;
}

.phase ul {
  list-style-type: none;
  padding-left: 1rem;
}

.phase ul li::before {
  content: "➤";
  color: #00ffc8;
  padding-right: 0.5rem;
}
.countdown-timer {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffc8;
  margin: 1rem 0;
  text-align: center;
}
/* Web3 Section Styling */
#web3 {
  background: linear-gradient(to right, #0f111a, #141c29);
  color: #e2e8f0;
  padding: 60px 20px;
  border-top: 2px solid #00e0ff;
  border-bottom: 2px solid #00e0ff;
}

#web3 h2 {
  font-size: 2.5rem;
  color: #00e0ff;
  margin-bottom: 30px;
  text-align: center;
}

#web3 h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  color: #00c0ff;
}

#web3 p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

#web3 ul, #web3 ol {
  max-width: 800px;
  margin: 0 auto 30px;
  padding-left: 20px;
  font-size: 1.05rem;
}

#web3 li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.web3-banner {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.4);
}

/* Optional Milestone List Enhancements */
.milestone-tracker li {
  list-style: '✅ ';
  padding-left: 10px;
  color: #a0f0ff;
}
