body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #f2f2f2;
  line-height: 1.6;
  background-image: url('../assets/images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #000;

}
html {
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  z-index: 1000;
  padding: 2px 0;
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff9900;
  font-weight: bold;
  font-size: 1.2em;
}

.nav-logo a {
  color: #ff9900;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-logo a:hover {
  color: #ffd700;
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;


}

.nav-links a {
  color: #ff9900;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.nav-button {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #ff9900;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 0.3s, color 0.3s;
}

.nav-button:hover {
  background-color: #ffd700;
  color: #000;
}

.nav-button.buy {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
}

.upper-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.upper-section img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.upper-section h1 {
  font-size: 2.8em;
  color: #ff9900;
  margin: 0;
}

.about-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  background-blend-mode: overlay;
}


.about-section h2 {
  position: relative;
  z-index: 2;
  font-size: 2.8em;
  color: #ff9900;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  max-width: 900px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.about-section p {
  position: relative;
  z-index: 2;
  max-width: 900px;
  font-size: 1.15em;
  line-height: 1.9;
  color: #f2f2f2;
  text-align: left;
  background-color: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tokenomics-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tokenomics-section h2 {
  font-size: 2.8em;
  color: #ff9900;
  margin-bottom: 100px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.tokenomics-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 64%;
  width: 100%;
}

.tokenomics-text {
  flex: 1;
  font-size: 1.2em;
  line-height: 1.8;
  padding-top: 40px;
}

#contract-address {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-family: monospace;
}

.tokenomics-text ul {
  list-style: none;
  padding: 0;
}

.tokenomics-text li {
  margin-bottom: 12px;
}

.tokenomics-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tokenomics-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  padding-left: 60px;
}


.roadmap-section {
  padding-top: 80px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.roadmap-section h2 {
  font-size: 2.8em;
  color: #ff9900;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.roadmap-item {
  background-color: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
  text-align: left;
  position: relative;
}

.roadmap-item .phase {
  font-weight: bold;
  color: #ffd700;
  font-size: 1em;
  margin-bottom: 10px;
  display: block;
}

.roadmap-item h3 {
  font-size: 1.5em;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.roadmap-item p {
  font-size: 1.1em;
  color: #ccc;
  line-height: 1.8;
}


.partners-section {
  padding: 10rem 2rem;
  text-align: center;
  color: #f5f5f5;
}

.partners-section__title {
  margin-bottom: 2rem;
  color: #ff9900;
  font-size: 2.8em;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.partners-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
  max-width: 60%;
  margin: 0 auto;
}

.partner-icon {
  width: 12rem;
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.partner-icon:hover {
  transform: scale(1.1);
}

.partner-icon img {
  max-width: 60%;
  max-height: 60%;
}


.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  color: #f5f5f5;
}

.cta-section__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  position: relative;
  z-index: 2;
  font-size: 2.8em;
  color: #ff9900;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  max-width: 900px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.cta-section__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;

}

.cta-section__button {
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-sizing: border-box;

}

.cta-section__button.primary {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.cta-section__button.primary:hover {
  background-color: #ffd700;
  color: #0d0d0d;
}

.cta-section__button.secondary {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.cta-section__button.secondary:hover {
  background-color: #ffd700;
  color: #0d0d0d;
}


.footer-section {
  padding: 10rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: #f5f5f5;
}

.footer-icons {
  display: flex;
  gap: 2rem;
}

.footer-icons .icon {
  width: 28px;
  height: 28px;
  fill: #f5f5f5;
  transition: fill 0.3s ease;
}

.footer-icons a:hover .icon {
  fill: #ffd700;
}

.footer-section__legal {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-section__legal a {
  color: #ffd700;
  text-decoration: none;
}

.footer-section__legal a:hover {
  text-decoration: underline;
}

.footer-section i {
  color: #f5f5f5;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.footer-section a:hover i {
  color: #ffd700;
}
.nav-toggle {
  display: none;
}


/* 📱 Full Mobile Responsive Styles */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  body {
    padding: 0;
    background-attachment: scroll;
  }

  .nav-logo {
    font-size: 1em;
	padding-left: 1.5rem;
  }

  .upper-section {

  
    height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;


  }

  .upper-section img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .upper-section h1 {
    font-size: 2em;
  }

  .about-section h2,
  .tokenomics-section h2,
  .roadmap-section h2,
  .partners-section__title,
  .cta-section__title {
    font-size: 2em;
    text-align: center;
  }
  
  .about-section {
  padding: 0 1rem;
  box-sizing: border-box;
}

  .about-section p {
	max-width: 100%;
	margin: 0 auto;
	padding: 1rem 1.5rem !important;
	box-sizing: border-box;
    font-size: 1em;
    text-align: left;
	box-sizing: border-box;
  }

  .tokenomics-content {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 2rem;
  }
  
  .tokenomics-section h2 {
  margin-bottom: 40px;
}

  .tokenomics-text {
    padding-top: 0;
    text-align: left;
  }
  
#contract-address {
  display: block;
  padding: 0.2rem 0.5rem;
  margin: 0 auto;
  max-width: 100%;
  margin-inline: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  text-align: center;
  font-size:1rem;
}



  .tokenomics-image {
    padding-left: 0;
    margin-top: 3rem;
    justify-content: center;
  }

  .tokenomics-image img {
    max-width: 100%;
    padding: 0 1rem;
	box-sizing: border-box;
  }

  .roadmap-timeline {
    padding: 0 1rem;
  }

  .roadmap-item {
    padding: 1.5rem;
  }


  .partners-section {
    padding: 5rem 1rem;
  }

  .partners-section__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 2rem;
  }

  .partner-icon {
    width: 120px;
    height: 120px;
  }
  
  .partner-icon img {
  max-width: 80%;
  max-height: 80%;
}


  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-section__subtitle {
    font-size: 1em;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
	width: 100%;
  }

  .cta-section__button {
    width: 100%;
    font-size: 1rem;
	text-align: center;
  }

  .footer-section {
    padding: 5rem 1rem 2rem;
    gap: 1rem;
  }

  .footer-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-section__legal {
    font-size: 0.75rem;
  }
  
  .nav-toggle {
    display: block;
	position:absolute;
	right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff9900;
    cursor: pointer;
  }
  
   .nav-container {
	background-color: transparent;
	align-items: flex-start;
	flex-direction: column;
	padding: 0.5rem 0;
	max-width: 100%;
    margin: 0;
  }

.nav-menu {
  display: none;
  width: 100%;
  gap: 1rem;
  margin-top: 1rem;
}

.nav-menu.show {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


.nav-links {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  gap: 0.5rem;
}

.nav-links li {
  list-style: none;
  text-align: left;
}

.nav-links li a {
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background-color: #ff9900;
  color: #000;
}


.nav-menu,
.nav-actions {
  flex-direction: column;
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  gap: 0.5rem;
    text-align: center;
}


.nav-button {
  width: 100%;
  font-size: 1.2em;
  box-sizing: border-box;
}
}

