 body {
      background-color: #141A33;
      font-family: Arial, sans-serif;
      color: white;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      margin-top: 10px;
      background-color: #314158;
      padding: 20px;
      border-radius: 20px;
    }

    h1 {
      text-align: center;
      margin-bottom: 10px;
    }

    #migrationCountdown {
      text-align: center;
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #ccc;
    }

    .search-container {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    #searchBar {
      width: 80%;
      max-width: 600px;
      padding: 10px;
      border-radius: 10px;
      border: none;
      font-size: 1rem;
      background-color: #DCDEDE;
      color: black;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background-color: #292E3D;
      border-radius: 15px;
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .card:hover {
      transform: scale(1.03);
    }
    
     .flag-img {
width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 5px;
    }
    

    .card-img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      display: block;
      margin: 0 auto 10px;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
      -webkit-text-stroke: 0.4px black;
    }
    
#locationList {
  min-height: 800px;
}


   


    .country-text {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .copy-btn {
      background-color: #fff;
      border: 10px;
      border-radius: 8px;
      padding: 6px 14px;
      cursor: pointer;
      color: black;
      font-weight: bold;
      box-shadow: 10px 5px 5px black;
    }

    .copy-btn:hover {
      background-color: #4a4;
    }
    
    
    #migrationCountdownBox {
  position: relative;
  background-color: #1f2a3e;
  padding: 15px 25px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  z-index: 10;
}

.disclaimer {
  font-size: 0.85rem;
  color: #ccc;
  text-align: center;
  margin-top: 40px;
  min-height: 60px; /* Espacio reservado para evitar movimiento */
}


/* Estilo general del menú */
.nav-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.nav-menu {
  display: flex;
  gap: 30px;
  background-color: #222;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  list-style: none;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffcc00;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .nav-menu {
    gap: 20px;
    padding: 10px 16px;
  }

  .nav-menu li a {
    font-size: 14px;
  }
}


.pokedex-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: #314158;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  color: white;
}
#searchInput {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background-color: #DCDEDE;
  color: black;
  margin-top: 10px;
}
.pokemon-result {
  margin-top: 30px;
  background-color: #1f2a3e;
  padding: 20px;
  border-radius: 15px;
}
.pokemon-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
.pokemon-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}
.pokemon-right {
  flex: 2;
  padding-left: 20px;
  min-width: 300px;
}
.description {
  margin-top: 20px;
  font-style: italic;
  font-size: 1rem;
  background-color: #2e3a4d;
  padding: 10px;
  border-radius: 10px;
}
.stat-bar {
  background-color: #ccc;
  height: 8px;
  border-radius: 10px;
  margin-top: 4px;
  overflow: hidden;
}
.stat-bar-inner {
  height: 100%;
  background-color: #88c3ff;
}
button {
  margin-top: 10px;
  padding: 6px 10px;
  border: none;
  background: #ffcc00;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}
.types span {
  display: inline-block;
  margin: 5px 5px 0;
  padding: 6px 12px;
  border-radius: 12px;
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
}
.types img {
  vertical-align: middle;
  margin-right: 6px;
}
.error {
  color: #ff6f6f;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .pokemon-flex {
    flex-direction: column;
    text-align: center;
  }
  .pokemon-right {
    padding-left: 0;
  }
}



  #push-btn {
    padding:.6rem .9rem;border:1px solid #444;border-radius:10px;
    background:#111;color:#eee;cursor:pointer
  }
  #push-btn.enabled { background:#1e293b; border-color:#334155 }
  #push-btn[disabled]{opacity:.6;cursor:not-allowed}
  #push-status { color:#9ca3af }






/* ===== Landing: Hero / Buttons / Footer ===== */
/* ===== Icons (Material Symbols) ===== */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

/* Icono dentro de tarjetas */
.feature-card {
  position: relative;
  padding-top: 18px; /* espacio para icono */
}
.feature-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #314158;      /* tu contenedor principal */
  color: #FFCC00;           /* tu acento */
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  font-size: 28px;          /* tamaño del símbolo */
}

/* Ajustes de hero/botones por si no los tenías */
.hero { padding: 28px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
.hero-title { font-size: 2.2rem; margin: 0 0 8px; }
.hero-subtitle { color: #ccc; line-height: 1.6; margin: 0 0 16px; }
.hero-img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 8px 20px rgba(0,0,0,.5); }

.badges { display: flex; gap: 12px; flex-wrap: wrap; margin: 10px 0 6px; }
.store-btn, .ghost-btn {
  display:inline-block; font-weight: 800; text-decoration:none;
  padding: 10px 16px; border-radius: 12px; transition: transform .15s ease, box-shadow .15s ease;
}
.store-btn { background: #FFCC00; color: #000; box-shadow: 0 6px 14px rgba(255,204,0,.25); }
.store-btn:hover { transform: translateY(-1px); }
.ghost-btn { background: transparent; color:#fff; border: 2px solid #fff; }
.ghost-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.35); }

/* Responsive */
@media (max-width: 980px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
}

/* ===== Hero Buttons ===== */
.badges { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin: 10px 0 6px; 
}

.store-btn, .ghost-btn {
  display:inline-block; 
  font-weight: 800; 
  text-decoration:none;
  padding: 12px 20px; 
  border-radius: 12px; 
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 1rem;
}

.store-btn { 
  background: #FFCC00; 
  color: #000; 
  box-shadow: 0 6px 14px rgba(255,204,0,.25); 
}
.store-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(255,204,0,.35);
}

.ghost-btn { 
  background: transparent; 
  color:#fff; 
  border: 2px solid #fff; 
}
.ghost-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 14px rgba(0,0,0,.35); 
}

