:root {
  --primary-color: #FFD700;
  --secondary-color: #4A4A4A;
  --background-color: #1a1a1a;
  --text-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
  box-sizing: border-box;
  
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(66, 174, 224, 0.95);
    z-index: 1000;
    padding: 1rem 0;
  }
  
  nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo {
    width: 40px;
    height: 40px;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--primary-color);
  }
  
  .buy-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .buy-btn:hover {
    background-color: #ffd900;
  }
  
  main {
    padding-top: 80px;
  }
  
  section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
  }
  
  .hero-content h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
 .container {
  font-family: 'Poppins', sans-serif;
  color: #cdd6f4;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;

 }
  
 
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
  }
  
  .feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .token-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    padding: 10%;
    gap: 2rem;
    max-width: 100%;
    margin-top: 3rem;
}



.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.stat h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
  
  .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .timeline-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
  }
  
  .timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .timeline-item ul {
    list-style-position: inside;
  }
  
  footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
  }
  
  .social-links {
    margin-bottom: 1rem;
  }
  
  .social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
  }
  
  .token-info {
    background: rgba(80, 196, 239, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .token-logo {
    width: 120px;
    height: 120px;
    background: rgba(111, 174, 243, 0.1);
    border-radius: 50%;
    padding: 10px;
    animation: pulse 2s infinite;
  }
  
  .token-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .token-address {
    text-align: center;
    width: 100%;
  }
  
  .token-address p {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .address-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .address-container code {
    font-family: 'Courier New', monospace;
    color: var(--text-color);
    word-break: break-all;
  }
  
  .copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
  }
  
  .copy-btn:hover {
    transform: scale(1.1);
  }
  
  .copy-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
  }
  
  .copy-message {
    display: none;
    color: var(--primary-color);
    font-size: 0.9rem;
  }
  
  .copy-message.show {
    display: block;
    animation: fadeInOut 2s ease-in-out;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
  }
  
  @keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  @media (max-width: 768px) {
    nav ul {
      display: none;
    }
    
    .token-stats {
      grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .hero-content h2 {
      font-size: 1.5rem;
    }
  }

  .cta-button {
    display: inline-block;
    background-color: #f5c2e7;
    color: #1e1e2e;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.cta-button:hover {
    background-color: #89b4fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(137, 180, 250, 0.3);
}


.imagen-centro   {
  max-width: 100%;
  height: auto;
}

#tokenomics  {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
}

h2   {
  text-align: center;
}

#dao {
    padding: 4rem 2rem;
    background-color: rgba(66, 174, 224, 0.1);
    border-radius: 10px;
    margin: 2rem auto;
}

#dao h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#dao input {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    margin-bottom: 1rem;
    width: 100%;
    max-width: 400px;
}

#dao button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

#dao button:hover {
    background-color: #ffd900;
}
