/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #1ABC9C;
  text-decoration: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #1e293b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1ABC9C;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  transition: transform 0.3s ease;
}

.nav-links li:hover {
  transform: scale(1.1);
}

.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to right, #1ABC9C, #2C3E50);
  animation: fadeIn 2s ease-in-out;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  background: #ffffff;
  color: #1ABC9C;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #1ABC9C;
  color: #ffffff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  background: #0f172a;
}

.feature {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.footer {
  text-align: center;
  padding: 2rem;
  background: #1e293b;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    flex-direction: column;
    background: #1e293b;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.about-hero {
  background: linear-gradient(120deg, #2C3E50, #1ABC9C);
  animation: fadeIn 2s ease-in-out;
}

.about-content {
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-block {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: slideUp 1s ease;
}

.about-block h2 {
  color: #1ABC9C;
  margin-bottom: 0.5rem;
}

.about-block p {
  font-size: 1rem;
  color: #d1d5db;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.tokenomics-hero {
  background: linear-gradient(135deg, #1ABC9C, #34495e);
  animation: fadeIn 1.5s ease-in;
}

.tokenomics-content {
  padding: 4rem 10%;
  color: #d1d5db;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.token-box {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  animation: slideUp 0.8s ease;
}

.token-box h2 {
  color: #1ABC9C;
  margin-bottom: 0.5rem;
}

.token-box p {
  font-size: 1.1rem;
  font-weight: 500;
}

.token-note {
  margin-top: 3rem;
  background: #0f172a;
  padding: 1.5rem;
  border-left: 5px solid #1ABC9C;
  border-radius: 0.5rem;
  font-size: 1rem;
  animation: fadeIn 1s ease-in-out;
}

.token-note a {
  color: #1ABC9C;
  text-decoration: underline;
}
.roadmap-hero {
  background: linear-gradient(135deg, #0f172a, #1ABC9C);
  animation: fadeIn 1.5s ease-in;
}

.roadmap-timeline {
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step {
  background: #1e293b;
  border-left: 6px solid #1ABC9C;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  animation: slideUp 0.8s ease;
}

.timeline-step h3 {
  color: #1ABC9C;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.timeline-step ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.timeline-step li {
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.buy-hero {
  background: linear-gradient(135deg, #1ABC9C, #1e3a8a);
  animation: fadeIn 1.2s ease-in-out;
}

.buy-guide {
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.buy-step {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: slideUp 0.6s ease;
}

.buy-step h2 {
  color: #1ABC9C;
  margin-bottom: 0.5rem;
}

.buy-step p {
  color: #d1d5db;
  line-height: 1.6;
}

.trustline-info {
  background: #0f172a;
  border-left: 5px solid #1ABC9C;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  color: #cbd5e1;
  font-family: monospace;
}
.dev-hero {
  background: linear-gradient(135deg, #1ABC9C, #2c3e50);
  animation: fadeIn 1.2s ease;
}

.dev-content {
  padding: 4rem 10%;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dev-section {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  animation: slideUp 0.6s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.dev-section h2 {
  color: #1ABC9C;
  margin-bottom: 1rem;
}

.dev-section p, .dev-section ul {
  color: #d1d5db;
  line-height: 1.5;
}

.dev-section ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  background: #1ABC9C;
  color: #0f172a;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  background: #149c85;
}
.contact-hero {
  background: linear-gradient(135deg, #1ABC9C, #4b5563);
  animation: fadeIn 1.2s ease;
}

.contact-form-container {
  padding: 4rem 10%;
  display: flex;
  justify-content: center;
}

.contact-form {
  background: #1e293b;
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.8s ease;
}

.contact-form label {
  color: #94a3b8;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  background: #0f172a;
  border: 1px solid #334155;
  color: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1ABC9C;
  box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.3);
}

.contact-info {
  padding: 2rem 10%;
  text-align: center;
  background: #0f172a;
  color: #cbd5e1;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: #1ABC9C;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin: 0.5rem 0;
}

.contact-info a {
  color: #38bdf8;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.docs-hero {
  background: linear-gradient(to right, #1ABC9C, #2c3e50);
  animation: fadeIn 1s ease-in;
}

.docs-container {
  padding: 4rem 10%;
  background-color: #0f172a;
  color: #e2e8f0;
}

.docs-section {
  margin-bottom: 2.5rem;
  animation: slideUp 0.5s ease;
}

.docs-section h2 {
  color: #1ABC9C;
  margin-bottom: 0.5rem;
}

.docs-section pre {
  background: #1e293b;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-family: monospace;
  color: #38bdf8;
  margin-top: 1rem;
}
.grant-hero {
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 1s ease;
}

.form-container {
  padding: 4rem 10%;
  background: #0f172a;
  color: #f1f5f9;
  display: flex;
  justify-content: center;
}

.grant-form {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.8s ease;
}

.grant-form label {
  font-weight: 600;
  color: #94a3b8;
}

.grant-form input,
.grant-form textarea {
  background: #0f172a;
  border: 1px solid #334155;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #f8fafc;
}

.grant-form input:focus,
.grant-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

