* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inconsolata", monospace;
  background: #121212;
  color: #e0e0e0;
  overflow-x: hidden;
  position: relative;
}

/* Container for consistent width */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Shooting Stars Background */
body::before,
body::after,
body .shooting-star-3,
body .shooting-star-4 {
  content: "";
  position: fixed;
  width: 2px;
  height: 20px;
  background: linear-gradient(
    to bottom,
    rgba(255, 215, 0, 0),
    #fff,
    rgba(255, 215, 0, 0)
  );
  z-index: -1;
  transform-origin: top center;
}

/* Shooting Star 1 */
body::before {
  top: 5%;
  left: 10%;
  animation: shoot 5s infinite linear;
}

/* Shooting Star 2 */
body::after {
  top: 25%;
  left: 40%;
  animation: shoot 7s infinite linear 2s;
}

/* Shooting Star 3 */
body .shooting-star-3 {
  top: 45%;
  left: 70%;
  animation: shoot 6s infinite linear 1s;
}

/* Shooting Star 4 */
body .shooting-star-4 {
  top: 65%;
  left: 90%;
  animation: shoot 4s infinite linear 3s;
}

/* Static Header */
.static-header {
  position: static;
  width: 100%;
  background: #1e1e1e;
  padding: 20px;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand span {
  font-family: "Changa One", cursive;
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 0 2px #ffd700;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  color: #00bfff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffd700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: #2e2e2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn img {
  width: 20px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.primary {
  background: #ff5722;
  color: #ffffff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger img {
  width: 30px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  padding: 20px;
  z-index: 1000;
}

.mobile-menu.active {
  display: block !important;
}

/* Close Button */
.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.close-menu img {
  width: 24px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 15px 0;
}

.mobile-menu a {
  color: #00bfff;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.hero-img {
  position: relative;
}

.hero-img .chart {
  position: absolute;
  top: -20px;
  left: 30px;
  padding-bottom: 20px;
  z-index: -1;
  transform: scaleX(-1);
}

.hero-chart {
  width: 280px;
}

.hero-logo {
  width: 500px;
  border-radius: 20%;
}

.hero-text {
  max-width: 800px;
}

h1 {
  font-family: "Changa One", cursive;
  font-size: 4.5rem;
  color: #ffd700;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) #ffd700;
  transform: perspective(500px) translateZ(20px);
}

.hero p {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin: 40px 0;
}

.ca-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  background: #f5f5f5;
}

#contract-address {
  font-size: 16px;
  color: #1f1e1e;
  font-weight: 400;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.copy-btn img {
  width: 20px;
}

/* Sections */
section {
  padding: 100px 20px;
  text-align: center;
}

h2 {
  font-family: "Changa One", cursive;
  font-size: 2.5rem;
  color: #ffd700;

  margin-bottom: 50px;
}

h3 {
  font-family: "Changa One", cursive;
  font-size: 1.5rem;
  color: #ffd700;
}

img {
  transition: transform 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.1);
}

/* About Section */
.about h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #f5f5f5;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-content p {
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 1.6;
}

.about-footer {
  font-weight: bolder;
  color: #ffd700;
}

/* Our Mission Section */
.mission-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
}

.mission-text {
  max-width: 500px;
  text-align: left;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.mission-text p {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.mission-image {
  flex: 1;
  max-width: 500px;
}

.mission-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* How to Buy Section */
.steps-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  background: #2e2e2e;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.step-number {
  background: #ff5722;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.step p {
  font-weight: bold;
}

.step-connector {
  width: 4px;
  height: 20px;
  background: #00bfff;
}

/* Rewards Section */
.rewards-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.rewards-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.reward-box {
  background: #2e2e2e;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
}

.rewards-cards p {
  font-weight: bold;
  margin-top: 10px;
}

#countdown {
  color: #00bfff;
  font-weight: bolder;
}

.reward-img {
  width: 500px;
  border-radius: 50%;
}

/* Why $NOST */
.why-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.why-box {
  background: #2e2e2e;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #919191;
}

.why-box p {
  margin-top: 10px;
  font-weight: bold;
}

/* Reward Feeds */
.subheading {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #e0e0e0;
  font-weight: 700;
  margin-bottom: 40px;
}

.feed-container {
  max-width: 800px;
  margin: 0 auto;
  background: #2e2e2e;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00bfff;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-item {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #ffd700;
  animation: slideUp 0.5s ease-out;
}

.feed-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #e0e0e0;
  margin: 0;
}

.feed-item .wallet {
  font-weight: bold;
  color: #00bfff;
}

.feed-item .amount {
  color: #ffd700;
  font-weight: bold;
}

/* Tokenomics */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.token-box {
  background: #2e2e2e;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #919191;
}

.token-box p {
  margin-top: 10px;
  font-weight: bold;
}

/* Community */
.community {
  background: #1e1e1e;
}

.social-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.dex_logo {
  width: 50px;
  height: 50px;
  border-radius: 20px;
}

.secondary {
  background: #2e2e2e;
  color: #00bfff;
  border: 2px solid #00bfff;
}

/* Footer */
footer {
  padding: 30px;
  background: #1e1e1e;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .header-content {
    gap: 10px;
  }

  .brand span {
    font-size: 1.8rem;
  }

  .nav-menu ul {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .social-btn {
    width: 35px;
    height: 35px;
  }

  .social-btn img {
    width: 18px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-flex {
    flex-direction: column;
    gap: 30px;
  }

  .hero-img .chart {
    left: 30px;
  }

  .hero-chart {
    width: 200px;
  }

  .hero-logo {
    width: 350px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
    margin: 30px 0;
  }

  .ca-box {
    padding: 10px 15px;
  }

  section {
    padding: 80px 15px;
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .about h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .mission-container {
    flex-direction: column;
    gap: 30px;
  }

  .mission-text {
    max-width: 100%;
    padding: 20px;
  }

  .mission-text p {
    font-size: 1.1rem;
  }

  .mission-image {
    max-width: 100%;
  }

  .steps-chain {
    max-width: 100%;
    gap: 15px;
  }

  .step {
    padding: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step p {
    font-size: 1rem;
  }

  .step-connector {
    height: 15px;
  }

  .rewards-flex {
    flex-direction: column;
    gap: 30px;
  }

  .reward-box {
    padding: 20px;
  }

  .rewards-cards p {
    font-size: 1rem;
  }

  .reward-img {
    width: 350px;
  }

  .why-flex {
    flex-direction: column;
    gap: 30px;
  }

  .why-box {
    padding: 20px;
  }

  .why-box h3 {
    font-size: 1.3rem;
  }

  .why-box p {
    font-size: 1rem;
  }

  .feed-container {
    max-height: 250px;
  }

  .feed-item p {
    font-size: 1rem;
  }

  .tokenomics-grid {
    gap: 20px;
  }

  .token-box {
    padding: 20px;
  }

  .token-box h3 {
    font-size: 1.3rem;
  }

  .token-box p {
    font-size: 1rem;
  }

  .social-cta {
    gap: 15px;
  }

  .social-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .static-header {
    padding: 15px;
  }

  .nav-menu,
  .social-icons {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.active {
    display: block !important;
  }

  .header-right {
    gap: 10px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .mobile-menu a {
    font-size: 1.1rem;
  }

  .mobile-socials {
    gap: 15px;
  }

  .hero {
    min-height: 0;
    margin-top: 100px;
  }

  .hero-flex {
    gap: 20px;
  }

  .hero-img .chart {
    left: 20px;
  }

  .hero-chart {
    width: 300px;
  }

  .hero-logo {
    width: 250px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin: 20px 0;
  }

  .ca-box {
    gap: 10px;
    padding: 8px 12px;
  }

  #contract-address {
    font-size: 14px;
  }

  section {
    padding: 60px 10px;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .about h4 {
    font-size: 14px;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-footer {
    font-size: 0.9rem;
  }

  .mission-text {
    padding: 15px;
  }

  .mission-text p {
    font-size: 1rem;
  }

  .step {
    padding: 12px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .step p {
    font-size: 0.9rem;
  }

  .step-connector {
    height: 10px;
  }

  .reward-box {
    padding: 15px;
  }

  .rewards-cards p {
    font-size: 0.9rem;
  }

  .reward-img {
    width: 250px;
  }

  .why-box {
    padding: 15px;
  }

  .why-box h3 {
    font-size: 1.2rem;
  }

  .why-box p {
    font-size: 0.9rem;
  }

  .subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .feed-container {
    max-height: 200px;
    padding: 15px;
  }

  .feed-item p {
    font-size: 0.9rem;
  }

  .token-box {
    padding: 15px;
  }

  .token-box h3 {
    font-size: 1.2rem;
  }

  .token-box p {
    font-size: 0.9rem;
  }

  .community p {
    font-size: 1rem;
  }

  footer {
    padding: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
  }

  .brand span {
    font-size: 1.5rem;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .mobile-menu a {
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    margin-top: 100px;
  }

  .hero-img .chart {
    left: -50px;
    top: -120px;
  }

  .hero-chart {
    width: 300px;
  }

  .hero-logo {
    width: 300px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin: 15px 0;
  }

  .ca-box {
    padding: 6px 10px;
  }

  #contract-address {
    font-size: 12px;
  }

  section {
    padding: 60px 10px;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 1.2rem;
  }

  .about h4 {
    font-size: 12px;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .about-footer {
    font-size: 0.8rem;
  }

  .mission-text {
    padding: 10px;
  }

  .mission-text p {
    font-size: 0.9rem;
  }

  .step {
    padding: 10px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .step p {
    font-size: 0.8rem;
  }

  .reward-box {
    padding: 10px;
  }

  .rewards-cards p {
    font-size: 0.8rem;
  }

  .reward-img {
    width: 200px;
  }

  .why-box {
    padding: 10px;
  }

  .why-box h3 {
    font-size: 1.1rem;
  }

  .why-box p {
    font-size: 0.8rem;
  }

  .subheading {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .feed-container {
    max-height: 150px;
    padding: 10px;
  }

  .feed-item p {
    font-size: 0.8rem;
  }

  .token-box {
    padding: 10px;
  }

  .token-box h3 {
    font-size: 1.1rem;
  }

  .token-box p {
    font-size: 0.8rem;
  }

  .community p {
    font-size: 0.9rem;
  }

  .social-cta {
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-cta .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  footer {
    padding: 15px;
    font-size: 0.9rem;
  }
}
