/* Import Pixel Font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Global Styles */
body {
  margin: 0;
  font-family: 'Press Start 2P', sans-serif;
  background: linear-gradient(135deg, #0d1220, #1a2135);
  color: #ffffff;
  overflow-x: hidden;
}

h1, h2 {
  text-align: center;
  text-shadow: 2px 2px #000000;
  color: #00ffff;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff00ff;
}

/* Header */
.header {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #2b2b45);
  padding: 100px 20px;
  position: relative;
}

.title span {
  color: #ff00ff;
}

.subtitle {
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
}

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

.pixel-btn {
  background: #000000;
  color: #00ffff;
  border: 3px solid #00ffff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-shadow: 2px 2px #000;
  transition: background 0.3s ease;
}

.pixel-btn:hover {
  background: #00ffff;
  color: #000000;
  border: 3px solid #ffffff;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(145deg, #1a2135, #0d1220);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature {
  background: #000000;
  border: 3px solid #00ffff;
  text-align: center;
  padding: 20px;
  text-shadow: 2px 2px #000;
}

/* Tokenomics */
/* Tokenomics Section */
.tokenomics {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(145deg, #1a2135, #0d1220);
  }
  
  .tokenomics h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 2px 2px #000;
  }
  
  .tokenomics-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .chart-container {
    width: 300px;
    height: 300px;
  }
  
  .token-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  
  .token-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .color-box {
    width: 20px;
    height: 20px;
    border-radius: 3px;
  }
  
  .token-item p {
    margin: 0;
    font-size: 1rem;
    text-shadow: 1px 1px #000;
    color: #ffffff;
  }
  

/* Roadmap */
.roadmap {
  background: #1a2135;
  padding: 60px 20px;
}

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

.milestone {
  background: #000000;
  border: 3px solid #00ffff;
  padding: 20px;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  background: #0d1220;
  color: #ffffff;
  padding: 20px;
}
/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .pixel-btn {
    background: #000000;
    color: #00ffff;
    border: 3px solid #00ffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-shadow: 2px 2px #000;
    transition: background 0.3s ease, transform 0.2s;
  }
  
  .pixel-btn:hover {
    background: #00ffff;
    color: #000000;
    border: 3px solid #ffffff;
    transform: scale(1.1);
  }
  
  /* Follow Buttons */
  .follow-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .follow-btn {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-shadow: 2px 2px #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .follow-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00ffff, 0 0 20px #ff00ff;
  }
  /* Coming Soon Modal */
.coming-soon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #000000;
    border: 3px solid #00ffff;
    padding: 20px 40px;
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 2px 2px #000000;
    animation: fadeIn 0.5s ease-out;
  }
  
  .hidden {
    display: none;
  }
  
  /* Fade In Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  