/* ======================
   General Text Styles
   ====================== */

.color-text {
  color: #00BFFF; /* Sky blue text color */
}

.gradient-text {
  background: linear-gradient(to right, #00BFFF, #8A2BE2); /* Blue to violet gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Only show text gradient */
}

/* ======================
   Connect Button Styles
   ====================== */

#connectLink {
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  display: inline-block;
  font-size: 12px;
}

#connectLink:hover {
  border: 2px solid #00BFFF; /* Highlight border on hover */
  transition: opacity 0.3s;
}

/* ======================
   Copy Button Container
   ====================== */

.copy-container {
  position: relative;
  display: inline-block;
}

.copy-btn {
  padding: 12px 24px;
  background-color: #1e1e1e;
  border: 2px solid #00BFFF;
  border-radius: 8px;
  color: #00BFFF;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background-color: #00BFFF;
  color: #1e1e1e;
}

.copied-tooltip {
  position: absolute;
  top: -35px;
  left: 100%;
  transform: translateX(-50%);
  background: #00ffcc;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.copied-tooltip.show {
  opacity: 1; /* Show tooltip */
}

/* ======================
   Payment Button Styles
   ====================== */

#pago-btn {
  background: #4f46e5;
  color: white;
  padding: 16px 32px;
  border: none;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

#pago-btn:disabled {
  background: #3a3a5a;
  cursor: not-allowed;
}

/* Spinner animation */
.spinner {
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#countdown {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* ======================
   Modal Notifications
   ====================== */

.modal {
  position: fixed;
  top: 90px;
  right: auto;
  background: #1f1f2e;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9999;
  max-width: 300px;
  min-width: 240px;
  font-size: 14px;
  animation: fadeIn 2s ease;
  height: 60px;
}

.modal.show {
  display: block;
}

.modal.success {
  border-left: 4px solid #4ade80; /* Green border */
}

.modal.error {
  border-left: 4px solid #f87171; /* Red border */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======================
   Stats Container Section
   ====================== */

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  max-width: 1000px;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
}

.stat-number {
  font-size: 1rem;
  color: #00ffff;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

.stat-number2 {
  font-size: 1rem;
  color: #00ffff;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

@media (max-width: 768px) {
  .conversion-info {
    margin-top: 60px;
  }
}

/* ======================
   Tokenomics Section
   ====================== */

.aether-tokenomics-section {
  background: #0e0e1b;
  padding: 60px 20px;
  color: #e4e4e4;
  font-family: 'Orbitron', sans-serif;
}

.aether-tokenomics-title {
  text-align: center;
  margin-bottom: 40px;
}

.aether-tokenomics-title h2 {
  font-size: 2.5rem;
  color: #00e0c2;
  text-shadow: none;
  letter-spacing: 0.5px;
}

.aether-tokenomics-title p {
  font-size: 1rem;
  color: #999;
}

.aether-tokenomics-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}



.aether-tokenomics-chart canvas {
  border-radius: 50%;
  background: radial-gradient(#14141f, #0e0e1b);
  box-shadow: 0 0 25px rgba(0, 255, 245, 0.3);
}

.aether-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  color: #0fffcc;
  font-family: 'Segoe UI', sans-serif;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.3s ease;
  z-index: 2;
}


.aether-tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}

.aether-tokenomics-item {
  background-color: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--color);
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: none;
  transition: background 0.3s, transform 0.3s;
}

.aether-tokenomics-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.aether-tokenomics-item strong {
  color: var(--color);
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.aether-tokenomics-item span {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* MODALES */

  /* Estilo general para modales */
    .modal3 {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    .modal-content3 {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 700px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      position: relative;
      font-family: 'Orbitron', sans-serif;
      color:black;
    }

    .close {
      color: #aaa;
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover {
      color: #000;
    }

    a {
      color: #007bff;
      cursor: pointer;
    }

    h2 {
      margin-top: 0;
      color: #333;
    }

/* DISEﾃ前 ROAD MAP */

.aether-roadmap-v2 {
  background: #0e0e1b;
  padding: 100px 20px;
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top:300px;
}

.aether-container-v2 {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.aether-header-v2 {
  text-align: center;
  margin-bottom: 60px;
}

.aether-header-v2 h2 {
  font-size: 40px;
  background: linear-gradient(90deg, #0fff95, #00BFFF, #ff4ecb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
}

.aether-header-v2 p {
  font-size: 18px;
  color: #aaa;
  margin-top: 10px;
}

.aether-copy-container {
  margin-top: 10px;
  position: relative;
}

.aether-copy-btn {
  background: linear-gradient(to right, #00BFFF, #0fff95);
  color: white;
  padding: 10px 28px;
  font-size: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aether-copy-btn:hover {
  transform: scale(1.05);
}

.aether-copied-tooltip {
  background: #1a1a40;
  color: #0fff95;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 5px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.aether-copied-tooltip.show {
  display: block;
}

.aether-timeline-v2 {
  position: relative;
  border-left: 3px solid #00BFFF;
  padding-left: 30px;
}

.aether-event-v2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 20px;
}

.aether-dot-v2 {
  position: absolute;
  left: -13px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #0fff95, #00BFFF);
  border-radius: 50%;
  box-shadow: 0 0 12px #0fff95;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 153, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 255, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 153, 0);
  }
}

.aether-date-v2 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd000;
  margin-bottom: 10px;
}

.aether-content-v2 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aether-content-v2 h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #ffffff;
}

.aether-status {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
}

.aether-status.completed {
  background-color: #0fff95;
  color: #000;
}

.aether-status.progress2 {
  background-color: #ffd000;
  color: #000;
}

@media (max-width: 768px) {
  .aether-roadmap-v2 {
    margin-top: 540px;
  }
}

/*DISEÑO LI BARRA MENU*/
.nav-item {
    position: relative;
    display: inline-block;
    text-align: center;
  }

  .nav-item .new-badge {
    position: absolute;
    top: 5px;
    left: 70%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #00BFFF;
    font-weight: 600;
    animation: pulseText 1.5s infinite;
    pointer-events: none;
    line-height: 1;
  }

  @keyframes pulseText {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
  }

/* DISEÑO DE ALIADOS ESTRATEGICOS */


.strategic-allies-section {
  background: #0e0e1b;
  padding: 60px 20px;
  color: #f1f1f1;
  font-family: 'Orbitron', sans-serif;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #48c6ef;
  background: linear-gradient(90deg, #0fff95, #00BFFF, #ff4ecb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
}

.allies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ally-card {
  background: #1c1f26;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  max-width: 220px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.ally-card img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(72, 198, 239, 0.4));
}

.ally-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 20px rgba(72, 198, 239, 0.2);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 768px) {
  .allies-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* DISEÑO PRELOADER */

#preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0a0a1f, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-logo {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.loader-logo img {
  width: 90px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loading-spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00ffc3;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

.loading-text {
  margin-top: 15px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* DISEÑO DE CUADRO STATS */

.aetherion-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  
  font-family: 'Orbitron', sans-serif;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(0, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 25px;
  width: 200px;
  text-align: center;
  color: #e0f7ff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  transition: 0.3s;
}

.stat-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1rem;
  color: #00ffe0;
  font-weight: bold;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.4rem;
  color: #ffffff;
}

/* DISEÑO ALIADOS ESTRATEGICOS / COINSNIPER */

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  
  box-sizing: border-box;
  background: transparent;
}

.widget-box {
  flex: 1 1 0;
  max-width: 450px;
  
  box-sizing: border-box;
  background: transparent;
  padding: 0;
}

@media (max-width: 768px) {
   .center-wrapper {
    flex-direction: column;
    gap: 10px
  }
}

    .hero {
      text-align: center;
      padding: 40px 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #cbd5e1;
    }

    .countdownb {
      font-size: 2rem;
      font-weight: bold;
      color: #ffcc00;
      background: rgba(0, 255, 255, 0.05);
      display: inline-block;
      padding: 10px 20px;
      border: 2px solid #00ffe0;
      border-radius: 12px;
    }

    .burn-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin: 50px 0;
    }

    .burn-box {
      background: rgba(0, 255, 255, 0.05);
      border: 1px solid rgba(0, 255, 255, 0.2);
      padding: 25px;
      width: 280px;
      text-align: center;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
    }

    .burn-box h3 {
      color: #00ffe0;
      margin-bottom: 10px;
    }

    .burn-box p {
      color: #fff;
      font-size: 1rem;
    }

    .participate {
      text-align: center;
      margin: 60px 20px;
    }

    .participate h2 {
      color: #00ffe0;
      margin-bottom: 10px;
    }

    .reward-tier {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 255, 255, 0.15);
      padding: 20px;
      margin: 10px auto;
      max-width: 400px;
      border-radius: 10px;
      color: #fff;
    }

    .reward-tier span {
      display: block;
      color: #00ffe0;
      margin-bottom: 5px;
    }
    
    
    /* DISEÑO CUADRO DE BOTON WHITEPAPER */
    
    .aetherion2-card {
  display: flex;
  align-items: center;
  background: rgba(0, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: #fefefe;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Orbitron', sans-serif;
}

.aetherion2-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
  
  
  
  animation: pulse3d 2.5s infinite ease-in-out;
  transform-origin: center center;
  z-index: 1;
}

@keyframes pulse3d {
  0%, 100% {
    transform: scale(1.1); /* más grande que su marco */
   
  }
  50% {
    transform: scale(1); /* vuelve a su tamaño natural */
    
  }
}


.aetherion2-content h2 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #facc15; /* dorado suave */
}

.aetherion2-content p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

.aetherion2-btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(90deg, #facc15, #fbbf24);
  color: #111827;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.aetherion2-btn:hover {
  transform: scale(1.05);
}

/* DISEÑO REDES SOCIALES */

.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.icon {
  background: linear-gradient(135deg, #00ffc8, #007bff);
  padding: 10px;
  border-radius: 50%;
  width:50px;
  height:50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 200, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-size:30px;
}

.icon:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 6px 20px rgba(0, 255, 200, 0.5);
}



.icon.telegram {
  background: #000;
}

.icon.x {
  background: #000;
}

@media (max-width: 768px) {
  .icon {
    padding: 6px;
  }

  .social-icons {
    gap: 10px;
  }
}

