/* ===============================
   AURA SONORA – ESTILO OFICIAL
   =============================== */

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #ffb6c1,
    #87ceeb,
    #dda0dd
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.container {
  text-align: center;
  max-width: 680px;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.logo {
  width: 140px;
  margin: 0 auto 24px auto;
  display: block;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 28px;
}

.divider {
  width: 80px;
  height: 4px;
  margin: 0 auto 28px auto;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}

.description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  margin: 32px auto;
  padding: 14px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #b56cff, #ff8ec7);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.section-title {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.category {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 15px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.premium-box {
  max-width: 420px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.premium-list li {
  margin-bottom: 10px;
}

.premium-note {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 14px;
}

.footer {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 40px;
}

.play-badge img {
  width: 220px;
  margin: 28px auto 0 auto;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-badge img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.coming-soon {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9);

  /* 🔥 CORRECCIÓN */
  text-decoration: none !important;
}

/* ===============================
   🔥 RESET TOTAL DE LINKS
   =============================== */

a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  color: inherit !important;
  outline: none !important;
  border: none !important;
}

/* Específico para "Disponible próximamente" */
.coming-soon,
.coming-soon * {
  text-decoration: none !important;
  border-bottom: none !important;
}
