/* -----------------------------
   RESETEO BÁSICO (Opcional)
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -----------------------------
   ESTILOS GLOBALES
------------------------------ */
html, body {
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
  color: #212529;
  scroll-behavior: smooth;
}

/* Para compensar el header fijo */
body {
  padding-top: 80px; /* Ajustar según la altura real del header */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Contenedor genérico */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------
   HEADER FIJO
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.header-container {
  max-width: 1440px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-container .logo-img {
  width: 30%;        /* Ocupa el 20% del ancho del header */
  height: auto;      /* Mantiene proporción */
  max-width: 150px;  /* No superar 150px de ancho */
  display: block;
}

/* -----------------------------
   NAVEGACIÓN
------------------------------ */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  margin-right: 20px;
}

/* Estilo de los links del menú */
.nav-link {
  display: inline-block;
  padding: 8px 16px;
  font-weight: 500;
  color: #FFD166;   /* Amarillo claro */
  border-radius: 30px;
  background: #2a2a2a;
  transition: background 0.3s, transform 0.2s;
}

.nav-link:hover {
  background: #FFB703;  /* Amarillo más fuerte */
  color: #1a1a1a;
  transform: scale(1.1);
}

.list-item.active .nav-link {
  background: #E63946;  /* Rojo */
  color: #fff;
}

.list-item.lighted .nav-link {
  background: #FFA07A;  /* Naranja */
  color: #fff;
}

.nav-icon {
  font-size: 1.2rem;
  color: #FFD166;
  padding: 8px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nav-icon:hover {
  background: #FFB703;
  color: #1a1a1a;
}

/* -----------------------------
   SECCIÓN HERO (MAIN)
------------------------------ */
section.main {
  padding: 40px 0 120px;
  position: relative;
  text-align: center;
}

.h1-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: radial-gradient(
    circle at 30% 50%,
    #FFD700 0%,
    #FFA07A 60%,
    #FFD166 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h1-title.small {
  font-size: 56px;
}

.main-subtitle {
  font-size: 18px;
  max-width: 800px;
  line-height: 1.6;
  color: #555;
  margin: 0 auto 30px;
}

/* Botones principales en la sección main */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  background: #FFD700; /* Amarillo neón */
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #E63946; /* Rojo */
  color: #fff;
}

.btn-secondary {
  background: #FFD166; /* Amarillo claro */
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: #FFB703; /* Amarillo más fuerte */
  color: #1a1a1a;
}

/* -----------------------------
   SECCIÓN ABOUT (WHO)
------------------------------ */
section.who {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.second-subtitle {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-top: 20px;
}

/* Contract address con botón copiar */
.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.label {
  font-weight: 600;
  color: #333;
}

.contract-input {
  background: #F2F2F2;
  border: none;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  width: 280px;
  color: #555;
  text-align: center;
}

.btn-copy {
  background: #FFD700;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-copy:hover {
  background: #E63946;
  color: #fff;
}

/* -----------------------------
   TOKENOMICS SECTION
------------------------------ */
section.tokenomics {
  padding: 80px 0;
  text-align: center;
}

.token-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}

.token-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  text-align: center;
  padding: 20px;
}

.token-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: #FFD700; /* Amarillo neón */
}

.token-info {
  margin-top: 8px;
}

.card-title {
  display: block;
  font-size: 18px;
  color: #E63946; /* Rojo */
  font-weight: 500;
  margin-bottom: 8px;
}

.card-text {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #FFD700; /* Amarillo neón */
}

/* -----------------------------
   SECCIÓN BUY NOW
------------------------------ */
.buy-section {
  padding: 100px 0;
  text-align: center;
}

.message-sect .center {
  display: flex;
  justify-content: center;
}

.message.highlight {
  background: #FFD166; /* Amarillo claro */
  border: 2px solid rgba(255,183,3,0.16);
  border-radius: 12px;
  padding: 24px;
  display: inline-block;
}

.message-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* -----------------------------
   FOOTER
------------------------------ */
.footer {
  background: #FAFAFA;
  border-top: 1px solid #ECECEC;
  padding: 40px 0;
  text-align: center;
}

.footer-container {
  max-width: 1400px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD700; /* Amarillo neón */
}

.social-icons a {
  font-size: 24px;
  margin: 0 8px;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.disclaimer {
  font-size: 14px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* -----------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
  }

  .h1-title {
    font-size: 48px;
  }

  .contract-box {
    flex-direction: column;
  }

  .token-grid {
    grid-template-columns: 1fr;
  }
}