* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #001B6B;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* ── Hero ── */

.hero {
  text-align: center;
  max-width: 420px;
}

.logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 24px rgba(0, 47, 165, 0.5));
}

h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  margin-bottom: 36px;
}

/* ── Store buttons ── */

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.store-btn div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.store-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Hint (página de descarga) ── */

.hint {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ── Social icons ── */

.social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Enlace al hub de Leyendas ── */

.leyendas-hub-wrap {
  margin-top: 44px;
  text-align: center;
}

.leyendas-hub-pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.leyendas-hub {
  display: inline-block;
  position: relative;
  font-family: 'Pinyon Script', cursive;
  font-size: 48px;
  line-height: 1.15;
  text-decoration: none;
  background-image: linear-gradient(to right, #D4AF37 0%, #FFFDE4 20%, #D4AF37 40%, #8A6E2F 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: leyendas-shimmer 4s linear infinite;
}

/* Línea que cruza por detrás de la cola de la "y", como el bar de las landings */
.leyendas-hub::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.1em;
  height: 2px;
  border-radius: 1px;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  transition: background 0.2s;
}

.leyendas-hub:hover::after {
  background: #FFFDE4;
}

@keyframes leyendas-shimmer {
  to {
    background-position: 200% center;
  }
}

/* ── Web play link ── */

.web-link {
  margin-top: 48px;
}

.web-link a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #FFD200;
  text-decoration: none;
  transition: color 0.2s;
}

.web-link a:hover {
  color: #FFE04D;
}

/* ── Footer ── */

footer {
  text-align: center;
  padding: 24px;
}

.footer-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 10px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
}

/* ── Responsive ── */

@media (max-width: 480px) {
  .logo {
    width: 110px;
    height: 110px;
  }

  h1 {
    font-size: 22px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }
}
