/* === ESTILOS BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: #e0e0e0;
  text-align: center;
  line-height: 1.5;
  background: url("image/fondo.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  padding-top: 80px; /* Espacio para el navbar fijo */
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 20, 13, 0.75);
  z-index: -1;
}

/* === NAVBAR CON IMAGOTIPO Y SELECTOR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(2, 12, 61, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.nav-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  border-radius: 6px;
  object-fit: contain;
}

.lang-bar {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  color: #fff;
  background: #ff6b00;
}

/* === BANNER Y HEADER === */
.banner {
  height: 280px;
  background: url("image/image(4).jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(36, 20, 13, 0.4),
    rgba(24, 24, 24, 0.95)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
}

/* === PROFILE CONTAINER === */
.profile-container {
  position: relative;
  margin-top: -75px;
  z-index: 3;
}
.profile {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #ff6b00;
  background: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.section {
  padding: 45px 20px;
}

/* === BOTONES Y CAJA CA === */
.cta-btn {
  background: #ff6b00;
  color: white;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s,
    background 0.2s;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}
.cta-btn:hover {
  transform: scale(1.05);
  background: #e05e00;
}

.ca-box {
  background: #1e1e1e;
  border: 1px solid #ff6b00;
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 620px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ca-text {
  font-family: monospace;
  font-size: 14px;
  color: #ffb88c;
  overflow-x: auto;
  white-space: nowrap;
}
.copy-btn {
  background: #ff6b00;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}
.copy-btn:hover {
  background: #e05e00;
}

/* === TOKENOMICS GRID === */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  width: 100%;
  max-width: 900px;
  margin: 45px auto 0 auto;
  box-sizing: border-box;
  /*display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 25px auto 0 auto;*/
}
.token-card {
  background: #181818;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* Nuevas propiedades para centrar verticalmente */
  display: flex;
  flex-direction: column; /* Alinea los elementos internos uno abajo del otro */
  justify-content: center; /* Centra todo el contenido verticalmente */
}

.token-card h3 {
  color: #ff6b00;
  font-size: 15px;
  margin-bottom: 5px;
}
h3.mbl {
  display: flex;
  align-items: center;
  justify-content: center; /* Alineación horizontal al centro (opcional) */
}
.token-card p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
p.liq {
  color: rgb(51, 85, 255);
  font-size: 13px;
}
/* Bloque tokenomics: Distribución */
.distribution {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  width: 100%;
  max-width: 900px;
  margin: 25px auto 0 auto;
  box-sizing: border-box;
  /*display: grid;
  max-width: 900px;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;*/
}

.dist-card {
  background: rgba(2, 12, 61);
  border: 0.5px solid #4e4e4e;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.dist-card:hover {
  transform: translateY(-3px);
}

.dist-card .percentage {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff9f43; /* Puedes usar el color primario de tu marca */
}

.dist-card .dist-label {
  font-size: 0.9rem;
}

/* === ECOSISTEMA Y LOGOS EXTERNOS === */
.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 25px auto 0 auto;
}
.ecosystem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
  min-width: 160px;
  flex: 1 1 160px;
  justify-content: center;
}
.ecosystem-card:hover {
  border-color: #ff6b00;
  transform: translateY(-3px);
  background: rgba(255, 107, 0, 0.08);
}
.ecosystem-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ecosystem-info {
  text-align: left;
}
.ecosystem-name {
  font-weight: bold;
  font-size: 14px;
  display: block;
}
.ecosystem-role {
  font-size: 11px;
  color: #888;
  display: block;
}

/* === GALERÍAS (MEMES Y MERCH) === */
.grid-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}
.grid-card {
  background: #474747;
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  padding: 12px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}
.grid-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b00;
}
.grid-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}
.grid-card .title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}
.tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  color: #ff6b00;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 5px;
  font-weight: bold;
}

/* === AJUSTES RESPONSIVOS MOBILE (< 600px) === */
@media (max-width: 600px) {
  body {
    padding-top: 65px;
  }
  .navbar {
    height: 65px;
    padding: 0 12px;
  }
  .nav-logo {
    max-width: 130px;
    height: 38px;
  }
  .nav-brand span {
    font-size: 15px;
  }
  .lang-btn {
    padding: 4px 5px;
    font-size: 11px;
  }
  .banner {
    height: 220px;
  }
  .banner-content h1 {
    font-size: 1.8rem !important;
  }
  .banner-content p {
    font-size: 1.05rem !important;
  }
  .profile {
    width: 110px;
    height: 110px;
  }
  .profile-container {
    margin-top: -60px;
  }
  .section {
    padding: 30px 15px;
  }
  .ca-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .ca-text {
    font-size: 12px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
  }
  .copy-btn {
    width: 100%;
    padding: 12px;
  }
  .cta-btn {
    width: 100%;
    margin: 10px 0;
    font-size: 15px;
  }
  .grid-card {
    width: calc(50% - 10px);
    padding: 8px;
  }
  .grid-card img {
    height: 135px;
  }
  .grid-card .title {
    font-size: 13px;
  }
}
/* Agrega estos estilos a tu tag <style> */
.token-card.highlight {
  border-color: rgba(255, 107, 0, 0.5);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, #181818 100%);
  position: relative;
}

.tax-badge {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
