:root {
  --bg: #090612;
  --surface: #120b22;
  --surface-2: #1a1030;
  --text: #fff;
  --muted: #b9aecb;
  --pink: #ff2fa5;
  --purple: #7c3cff;
  --cyan: #33d9ff;
  --line: rgba(255,255,255,.10);
  --shadow: 0 24px 70px rgba(0,0,0,.45);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(124,60,255,.26), transparent 38%),
    radial-gradient(circle at 0% 35%, rgba(255,47,165,.16), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

button, a, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.app-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  padding-bottom: 106px;
}

.topbar {
  min-height: 76px;
  padding: 12px 18px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(9,6,18,.98), rgba(9,6,18,.78), transparent);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 150px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.install-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.screen {
  display: none;
  padding: 12px 18px 32px;
  animation: screenIn .28s ease;
}
.screen--active { display: block; }
@keyframes screenIn { from { opacity: 0; transform: translateY(8px); } }

.hero-card {
  overflow: hidden;
  position: relative;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 44%),
    linear-gradient(145deg, #1a0f35 0%, #0e091d 65%);
  box-shadow: var(--shadow);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.hero-glow--one {
  width: 260px;
  height: 260px;
  background: rgba(124,60,255,.24);
  top: 88px;
  left: -80px;
}
.hero-glow--two {
  width: 220px;
  height: 220px;
  background: rgba(255,47,165,.20);
  right: -70px;
  top: 230px;
}

.live-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  background: rgba(255,47,165,.15);
  color: #ff9bd4;
  border: 1px solid rgba(255,47,165,.35);
}
.live-pill--inline { align-self: flex-start; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255,47,165,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255,47,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,47,165,0); }
}

.cover-wrap {
  position: relative;
  z-index: 1;
  width: 245px;
  height: 245px;
  margin: 22px 0 4px;
  display: grid;
  place-items: center;
}
.cover-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
}
.cover-ring--outer {
  inset: 0;
  background: radial-gradient(circle, rgba(124,60,255,.25), rgba(255,47,165,.08) 58%, transparent 60%);
  box-shadow: 0 0 70px rgba(124,60,255,.25);
}
.cover-ring--inner { inset: 20px; }
.cover-logo {
  position: relative;
  width: 188px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.42));
}

.hero-card h1 {
  position: relative;
  z-index: 1;
  margin: 6px 0 2px;
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  line-height: 1.05;
}
.tagline {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.main-play {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  margin-top: 22px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 12px 34px rgba(124,60,255,.42);
  display: grid;
  place-items: center;
}
.main-play:active { transform: scale(.98); }
.play-icon { font-size: 1.7rem; transform: translateX(2px); }

.player-status {
  position: relative;
  z-index: 1;
  min-height: 22px;
  color: #d7cce7;
  font-size: .9rem;
  margin: 10px 0 0;
}

.now-playing, .listeners-card {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 14px;
  margin-top: 14px;
}
.now-playing__copy { min-width: 0; }
.now-playing small, .listeners-card small {
  display: block;
  font-size: .68rem;
  letter-spacing: .10em;
  color: #a99dbb;
  margin-bottom: 2px;
}
.now-playing strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.equalizer {
  display: flex;
  gap: 3px;
  align-items: end;
  height: 24px;
}
.equalizer span {
  width: 4px;
  height: 8px;
  background: linear-gradient(var(--cyan), var(--pink));
  border-radius: 999px;
}
body.is-playing .equalizer span { animation: eq .8s ease-in-out infinite alternate; }
body.is-playing .equalizer span:nth-child(2){ animation-delay: .15s; }
body.is-playing .equalizer span:nth-child(3){ animation-delay: .3s; }
body.is-playing .equalizer span:nth-child(4){ animation-delay: .45s; }
@keyframes eq { to { height: 24px; } }

.listeners-card { margin-top: 10px; }
.listeners-icon { font-size: 1.3rem; }

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.quick-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  padding: 16px;
  display: flex;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}
.quick-card__icon { font-size: 1.5rem; }
.quick-card strong, .quick-card small { display: block; }
.quick-card small { color: var(--muted); margin-top: 3px; }

.section-heading { margin: 6px 0 20px; }
.eyebrow {
  color: #ff87c9;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .14em;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 8vw, 2.7rem);
  margin: 6px 0 8px;
}
.section-heading p { color: var(--muted); margin: 0; line-height: 1.55; }

.radio-card, .pwa-card, .about-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(124,60,255,.18), rgba(255,47,165,.08)),
    var(--surface);
  box-shadow: var(--shadow);
}
.radio-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px;
  align-items: center;
}
.radio-card > img { width: 112px; }
.radio-card h3 { margin: 14px 0 4px; }
.radio-card p { color: var(--muted); margin: 0 0 18px; }

.wide-play {
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.wide-play--secondary {
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
}

.volume-card {
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.volume-card input { width: 100%; accent-color: var(--pink); }

.chat-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 560px;
  box-shadow: var(--shadow);
}
.chat-frame iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 620px;
  background: #fff;
}

.store-list, .more-list {
  display: grid;
  gap: 12px;
}
.store-card, .more-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.store-card__icon, .more-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(255,47,165,.32), rgba(124,60,255,.35));
  font-weight: 900;
  font-size: 1.25rem;
}
.store-card span:nth-child(2), .more-item span:nth-child(2) { flex: 1; }
.store-card small, .more-item small { display: block; color: var(--muted); margin-bottom: 2px; }
.store-card__arrow, .more-item > span:last-child { font-size: 1.7rem; color: #bdaed1; }

.pwa-card { margin-top: 18px; padding: 20px; }
.pwa-card h3 { margin: 10px 0 6px; }
.pwa-card p { color: var(--muted); margin: 0 0 18px; }
.pwa-card__badge {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(51,217,255,.14);
  color: #8be9ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-card {
  margin-top: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-card img { width: 110px; }
.about-card p { color: var(--muted); }
.about-card strong { color: #fff; }

.bottom-nav {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(calc(100% - 22px), 720px);
  height: 74px;
  border: 1px solid var(--line);
  background: rgba(19,11,34,.92);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.5);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 6px;
}
.nav-item {
  border: 0;
  background: transparent;
  border-radius: 18px;
  color: #b7aac7;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  cursor: pointer;
}
.nav-item span { font-size: 1.35rem; line-height: 1; }
.nav-item small { font-size: .68rem; font-weight: 800; }
.nav-item--active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,47,165,.24), rgba(124,60,255,.25));
}

.mini-player {
  position: fixed;
  z-index: 45;
  left: 50%;
  bottom: 94px;
  transform: translateX(-50%);
  width: min(calc(100% - 34px), 690px);
  border: 1px solid var(--line);
  background: rgba(18,11,34,.95);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
  align-items: center;
}
.mini-player[hidden] { display: none; }
.mini-player img { width: 46px; height: 46px; object-fit: contain; }
.mini-player small { display: block; color: #ff8acb; font-size: .65rem; letter-spacing: .12em; }
.mini-player button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-weight: 900;
}

@media (max-width: 520px) {
  .brand img { width: 132px; }
  .hero-card { min-height: 590px; padding-inline: 16px; }
  .cover-wrap { width: 220px; height: 220px; }
  .cover-logo { width: 170px; }
  .quick-grid { grid-template-columns: 1fr; }
  .radio-card { grid-template-columns: 1fr; text-align: center; }
  .radio-card > img { margin: 0 auto; width: 150px; }
  .live-pill--inline { align-self: center; }
}

@media (min-width: 761px) {
  body { padding: 24px 0; }
  .app-shell {
    min-height: calc(100vh - 48px);
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
    background: rgba(9,6,18,.62);
    box-shadow: 0 30px 100px rgba(0,0,0,.45);
  }
  .bottom-nav {
    width: 700px;
  }
}




/* =========================================================
   FANTASÍA MUSICAL V18 CLEAN
   Un solo tema, sin capas antiguas ni fondos en conflicto.
   ========================================================= */

:root {
  --display-font: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
}

html, body, button, input, a {
  font-family: var(--body-font);
}

body {
  background:
    linear-gradient(180deg, rgba(4,2,12,.22), rgba(4,2,12,.58)),
    url("assets/bg-musical-neon.svg") center top / cover fixed no-repeat,
    #070311 !important;
  overflow-x: hidden;
}

.animated-bg {
  display: none !important;
}

.app-shell {
  position: relative;
  z-index: 1;
  background: rgba(7,3,17,.36);
  backdrop-filter: blur(9px);
}

.stage-lights {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.stage-lights__beam {
  position: absolute;
  top: -16%;
  width: 35vw;
  height: 76vh;
  filter: blur(22px);
  opacity: .26;
  mix-blend-mode: screen;
  transform-origin: top center;
  animation: stageBeam 9s ease-in-out infinite alternate;
}

.stage-lights__beam--one {
  left: -4vw;
  background: linear-gradient(180deg, rgba(255,47,165,.58), transparent);
  transform: rotate(-21deg);
}

.stage-lights__beam--two {
  left: 34vw;
  background: linear-gradient(180deg, rgba(124,60,255,.62), transparent);
  transform: rotate(-3deg);
  animation-duration: 11s;
}

.stage-lights__beam--three {
  right: -3vw;
  background: linear-gradient(180deg, rgba(51,217,255,.48), transparent);
  transform: rotate(18deg);
  animation-duration: 10s;
}

@keyframes stageBeam {
  from { opacity: .18; translate: -18px 0; }
  to { opacity: .36; translate: 28px 26px; }
}

/* Fondo claramente nuevo del reproductor principal */
.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 660px;
  background: #0a0618 !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow:
    0 34px 95px rgba(0,0,0,.62),
    0 0 48px rgba(124,60,255,.16),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6,3,18,.10) 0%, rgba(6,3,18,.20) 42%, rgba(6,3,18,.76) 100%),
    url("assets/player-panel-v18.svg") center / cover no-repeat;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 23%, transparent 0 23%, rgba(5,2,14,.10) 42%, rgba(5,2,14,.38) 100%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 2;
}

.hero-glow {
  display: none;
}

.hero-card h1,
.section-heading h2,
.radio-card h3,
.pwa-card h3,
.about-card strong,
.entry-intro h2,
.app-download-prompt__copy h2,
.push-prompt__copy h2 {
  font-family: var(--display-font);
  letter-spacing: .045em;
}

.hero-card h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 11vw, 5rem);
  line-height: .9;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #ff9fd8 40%, #9fefff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(255,47,165,.16);
}

.tagline {
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e3d7ee;
}

.cover-wrap {
  isolation: isolate;
}

.cover-wrap::before,
.cover-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cover-wrap::before {
  inset: -10px;
  border: 3px solid rgba(255,255,255,.08);
  border-top-color: #ff38ad;
  border-right-color: #8c49ff;
  border-bottom-color: #35dcff;
  filter: drop-shadow(0 0 20px rgba(255,47,165,.28));
  animation: orbitOne 9s linear infinite;
}

.cover-wrap::after {
  inset: 10px;
  border: 2px dashed rgba(255,255,255,.18);
  border-left-color: rgba(53,220,255,.72);
  border-bottom-color: rgba(255,56,173,.62);
  animation: orbitTwo 12s linear infinite reverse;
}

.cover-ring--outer {
  background: radial-gradient(circle, rgba(124,60,255,.24), rgba(255,47,165,.08) 56%, transparent 69%);
  box-shadow: 0 0 72px rgba(124,60,255,.26);
  animation: ringPulse 3.2s ease-in-out infinite;
}

.cover-ring--inner {
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
}

.cover-logo {
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes orbitOne { to { transform: rotate(360deg); } }
@keyframes orbitTwo { to { transform: rotate(360deg); } }
@keyframes ringPulse {
  0%,100% { transform: scale(.98); opacity: .80; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.025); }
}

.main-play {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, #ff2fa5 0%, #8b43ff 62%, #33d9ff 100%);
  box-shadow:
    0 16px 42px rgba(124,60,255,.48),
    0 0 38px rgba(255,47,165,.26);
}

/* DJ y oyentes */
.live-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.dj-live-card,
.listeners-card {
  min-height: 118px;
  margin: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(10,6,24,.72);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.dj-live-card__avatar,
.listeners-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2fa5, #7c3cff 64%, #33d9ff);
  box-shadow: 0 10px 26px rgba(124,60,255,.30);
  color: #fff;
}

.dj-live-card__avatar {
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.dj-live-card small,
.listeners-card small {
  display: block;
  margin: 0 0 2px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #ffabd8;
}

.sonic-dj-value,
#sonic_listeners {
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}

.ui-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Iconos locales, sin depender de una fuente externa */
.quick-card__icon,
.store-card__icon,
.more-item__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(255,47,165,.28), rgba(124,60,255,.30));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.20);
}

.quick-card,
.store-card,
.more-item,
.radio-card,
.pwa-card,
.about-card,
.volume-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    rgba(12,7,27,.78);
  border-color: rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
}

.nav-icon {
  display: grid;
  place-items: center;
}

.nav-icon .ui-icon {
  width: 23px;
  height: 23px;
}

.nav-item--active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,47,165,.30), rgba(124,60,255,.34));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* Textos centrados */
.screen .section-heading,
.screen .section-heading h2,
.screen .section-heading p,
.screen .eyebrow,
.quick-card,
.store-card,
.more-item,
.pwa-card,
.about-card,
.radio-card__body {
  text-align: center;
}

.quick-card,
.store-card,
.more-item,
.about-card {
  justify-content: center;
}

.radio-card__body .live-pill--inline {
  margin-inline: auto;
}

/* Chat grande y sin reproductor encima */
body.chat-is-open .mini-player {
  display: none !important;
}

#chat {
  padding-top: 6px;
  padding-bottom: 12px;
}

#chat .section-heading {
  margin-bottom: 10px;
}

#chat .chat-frame {
  width: 100%;
  height: clamp(700px, 78dvh, 920px);
  min-height: 700px;
  margin-bottom: 0;
}

#chat .chat-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 700px;
}

/* Aviso para descargar la app */
.app-download-prompt {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: end;
  justify-items: center;
}

.app-download-prompt[hidden] { display: none !important; }

.app-download-prompt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,1,10,.76);
  backdrop-filter: blur(8px);
}

.app-download-prompt__panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 520px);
  margin: 0 12px max(12px, env(safe-area-inset-bottom));
  padding: 24px 20px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(145deg, rgba(22,10,46,.98), rgba(8,4,20,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
  text-align: center;
}

.app-download-prompt__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.65rem;
}

.app-download-prompt__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,47,165,.22), rgba(124,60,255,.30));
}

.app-download-prompt__icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
}

.app-download-prompt__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #ff9bd4;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.app-download-prompt__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: .95;
  text-transform: uppercase;
}

.app-download-prompt__copy p {
  margin: 0 auto 18px;
  max-width: 390px;
  color: #cfc3df;
  line-height: 1.5;
}

.app-download-prompt__button {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  background: linear-gradient(135deg, #ff2fa5, #7c3cff 68%, #33d9ff);
  color: #fff;
  font-weight: 900;
}

.app-download-prompt__later {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #bcb0cc;
  font-weight: 700;
}

/* Entrada con MP3 */
.entry-intro {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.entry-intro[hidden] { display: none !important; }

.entry-intro__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(124,60,255,.28), transparent 36%),
    rgba(3,1,10,.88);
  backdrop-filter: blur(12px);
}

.entry-intro__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px 22px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%),
    linear-gradient(145deg, rgba(22,10,46,.98), rgba(8,4,20,.98));
  box-shadow: 0 32px 100px rgba(0,0,0,.68);
  text-align: center;
}

.entry-intro__rings {
  position: relative;
  width: 172px;
  height: 172px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.entry-intro__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  border-top-color: #ff2fa5;
  border-right-color: #7c3cff;
  border-bottom-color: #33d9ff;
  animation: orbitOne 8s linear infinite;
}

.entry-intro__rings span:nth-child(2) {
  inset: 14px;
  border-style: dashed;
  animation-duration: 11s;
  animation-direction: reverse;
}

.entry-intro__rings img {
  width: 124px;
  max-height: 112px;
  object-fit: contain;
  animation: logoFloat 3s ease-in-out infinite;
}

.entry-intro__eyebrow {
  display: block;
  color: #ff9bd4;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.entry-intro h2 {
  margin: 7px 0 4px;
  font-size: clamp(2.8rem, 13vw, 4.5rem);
  line-height: .9;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #ff9dd6 42%, #8deaff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.entry-intro p {
  margin: 0 0 20px;
  color: #cfc3df;
  font-weight: 700;
}

.entry-intro__button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff2fa5, #7c3cff 66%, #33d9ff);
  color: #fff;
  font-weight: 900;
}

.entry-intro__skip {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #bdb1cc;
  font-weight: 700;
}

.entry-intro small {
  display: block;
  margin-top: 12px;
  color: #8f839e;
  font-size: .72rem;
}

@media (max-width: 520px) {
  .hero-card {
    min-height: 670px;
  }

  .live-info-grid {
    grid-template-columns: 1fr;
  }

  #chat .chat-frame {
    height: calc(100dvh - 165px);
    min-height: 650px;
  }

  #chat .chat-frame iframe {
    min-height: 650px;
  }
}

@media (min-width: 700px) {
  .app-download-prompt {
    align-items: center;
  }

  .app-download-prompt__panel {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-lights__beam,
  .cover-wrap::before,
  .cover-wrap::after,
  .cover-ring--outer,
  .cover-logo,
  .entry-intro__rings span,
  .entry-intro__rings img {
    animation: none !important;
  }
}


/* ===== V19: fondo animado + mini reproductor oculto ===== */
.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-motion__orb,
.hero-motion__wave {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-motion__orb {
  border-radius: 50%;
  filter: blur(24px);
  opacity: .42;
}

.hero-motion__orb--one {
  width: 210px;
  height: 210px;
  left: -50px;
  top: 110px;
  background: radial-gradient(circle, rgba(255,47,165,.70), rgba(255,47,165,0) 68%);
  animation: heroOrbOne 12s ease-in-out infinite alternate;
}

.hero-motion__orb--two {
  width: 260px;
  height: 260px;
  right: -70px;
  top: 240px;
  background: radial-gradient(circle, rgba(51,217,255,.60), rgba(51,217,255,0) 68%);
  animation: heroOrbTwo 16s ease-in-out infinite alternate;
}

.hero-motion__orb--three {
  width: 200px;
  height: 200px;
  left: 34%;
  bottom: 90px;
  background: radial-gradient(circle, rgba(124,60,255,.62), rgba(124,60,255,0) 70%);
  animation: heroOrbThree 13s ease-in-out infinite alternate;
}

.hero-motion__wave {
  left: 50%;
  width: 140%;
  height: 180px;
  transform: translateX(-50%);
  filter: blur(12px);
  opacity: .34;
}

.hero-motion__wave--one {
  bottom: 110px;
  background:
    radial-gradient(120% 140% at 50% 100%, rgba(255,47,165,.0) 54%, rgba(255,47,165,.44) 56%, rgba(255,47,165,0) 58%),
    radial-gradient(120% 140% at 50% 100%, rgba(124,60,255,.0) 64%, rgba(124,60,255,.28) 66%, rgba(124,60,255,0) 68%);
  animation: heroWaveMoveOne 8s linear infinite;
}

.hero-motion__wave--two {
  bottom: 75px;
  background:
    radial-gradient(120% 140% at 50% 100%, rgba(51,217,255,.0) 57%, rgba(51,217,255,.28) 59%, rgba(51,217,255,0) 61%),
    radial-gradient(120% 140% at 50% 100%, rgba(255,255,255,.0) 71%, rgba(255,255,255,.15) 73%, rgba(255,255,255,0) 75%);
  animation: heroWaveMoveTwo 10s linear infinite reverse;
}

.stage-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.stage-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 0 14px rgba(255,255,255,.28);
  opacity: .35;
  animation: particleFloat 11s linear infinite;
}

.stage-particles span:nth-child(1) { left: 8%; top: 16%; animation-duration: 10s; }
.stage-particles span:nth-child(2) { left: 18%; top: 40%; animation-duration: 12s; }
.stage-particles span:nth-child(3) { left: 30%; top: 24%; animation-duration: 9s; }
.stage-particles span:nth-child(4) { left: 42%; top: 62%; animation-duration: 14s; }
.stage-particles span:nth-child(5) { left: 56%; top: 18%; animation-duration: 11s; }
.stage-particles span:nth-child(6) { left: 70%; top: 48%; animation-duration: 13s; }
.stage-particles span:nth-child(7) { left: 84%; top: 20%; animation-duration: 10s; }
.stage-particles span:nth-child(8) { left: 90%; top: 58%; animation-duration: 12s; }
.stage-particles span:nth-child(9) { left: 12%; top: 74%; animation-duration: 15s; }
.stage-particles span:nth-child(10){ left: 26%; top: 86%; animation-duration: 10s; }
.stage-particles span:nth-child(11){ left: 60%; top: 82%; animation-duration: 14s; }
.stage-particles span:nth-child(12){ left: 78%; top: 72%; animation-duration: 11s; }

.hero-card::before {
  animation: heroPanelGlow 14s ease-in-out infinite alternate;
}

.hero-card::after {
  animation: heroOverlayPulse 8s ease-in-out infinite alternate;
}

body.is-playing .hero-motion__orb--one,
body.is-playing .hero-motion__orb--two,
body.is-playing .hero-motion__orb--three {
  animation-duration: 7s;
}

body.is-playing .hero-motion__wave--one {
  animation-duration: 4.8s;
  opacity: .44;
}

body.is-playing .hero-motion__wave--two {
  animation-duration: 5.8s;
  opacity: .38;
}

body.is-playing .stage-lights__beam {
  opacity: .42;
}

body.is-playing .stage-particles span {
  opacity: .5;
}

.mini-player {
  display: none !important;
}

@keyframes heroOrbOne {
  from { transform: translate3d(0, 0, 0) scale(.95); }
  to { transform: translate3d(110px, 40px, 0) scale(1.12); }
}

@keyframes heroOrbTwo {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-120px, -35px, 0) scale(.90); }
}

@keyframes heroOrbThree {
  from { transform: translate3d(0, 0, 0) scale(.92); }
  to { transform: translate3d(50px, -90px, 0) scale(1.08); }
}

@keyframes heroWaveMoveOne {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-47%) translateY(-8px); }
}

@keyframes heroWaveMoveTwo {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-53%) translateY(6px); }
}

@keyframes heroPanelGlow {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.08) brightness(1.06); }
}

@keyframes heroOverlayPulse {
  0% { opacity: .72; }
  100% { opacity: .92; }
}

@keyframes particleFloat {
  0% { transform: translate3d(0,0,0) scale(.7); opacity: .18; }
  50% { transform: translate3d(0,-20px,0) scale(1.12); opacity: .55; }
  100% { transform: translate3d(0,-40px,0) scale(.8); opacity: .12; }
}

@media (max-width: 520px) {
  .hero-motion__wave {
    width: 180%;
  }

  .hero-motion__orb--one {
    width: 170px;
    height: 170px;
  }

  .hero-motion__orb--two {
    width: 210px;
    height: 210px;
  }

  .hero-motion__orb--three {
    width: 170px;
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion__orb,
  .hero-motion__wave,
  .stage-particles span,
  .hero-card::before,
  .hero-card::after {
    animation: none !important;
  }
}


/* ===== V20: fondo animado tipo neón ===== */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(180deg, #05020d 0%, #0b0518 48%, #06030f 100%) !important;
}

.neon-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.03), transparent 22%),
    linear-gradient(180deg, rgba(6,3,15,.16), rgba(6,3,15,.34));
}

.neon-bg__blob,
.neon-bg__line,
.neon-bg__grid {
  position: absolute;
  pointer-events: none;
}

.neon-bg__blob {
  border-radius: 50%;
  filter: blur(32px);
  mix-blend-mode: screen;
  opacity: .56;
}

.neon-bg__blob--one {
  width: 440px;
  height: 440px;
  left: -110px;
  top: 8%;
  background: radial-gradient(circle, rgba(255,47,165,.92) 0%, rgba(255,47,165,.16) 56%, transparent 74%);
  animation: neonBlobOne 16s ease-in-out infinite alternate;
}

.neon-bg__blob--two {
  width: 520px;
  height: 520px;
  right: -160px;
  top: 34%;
  background: radial-gradient(circle, rgba(124,60,255,.95) 0%, rgba(124,60,255,.18) 56%, transparent 76%);
  animation: neonBlobTwo 22s ease-in-out infinite alternate;
}

.neon-bg__blob--three {
  width: 400px;
  height: 400px;
  left: 20%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(51,217,255,.88) 0%, rgba(51,217,255,.14) 56%, transparent 76%);
  animation: neonBlobThree 18s ease-in-out infinite alternate;
}

.neon-bg__line {
  border-radius: 999px;
  filter: blur(16px);
  opacity: .48;
  mix-blend-mode: screen;
}

.neon-bg__line--one {
  width: 900px;
  height: 84px;
  left: -140px;
  top: 18%;
  transform: rotate(-14deg);
  background: linear-gradient(90deg, rgba(255,47,165,0), rgba(255,47,165,.65), rgba(124,60,255,.85), rgba(51,217,255,.35), rgba(51,217,255,0));
  animation: neonLineOne 15s ease-in-out infinite alternate;
}

.neon-bg__line--two {
  width: 980px;
  height: 90px;
  right: -170px;
  top: 42%;
  transform: rotate(11deg);
  background: linear-gradient(90deg, rgba(51,217,255,0), rgba(51,217,255,.50), rgba(124,60,255,.86), rgba(255,47,165,.58), rgba(255,47,165,0));
  animation: neonLineTwo 18s ease-in-out infinite alternate;
}

.neon-bg__line--three {
  width: 860px;
  height: 74px;
  left: 8%;
  bottom: 12%;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, rgba(124,60,255,0), rgba(124,60,255,.28), rgba(255,47,165,.60), rgba(51,217,255,.44), rgba(51,217,255,0));
  animation: neonLineThree 16s ease-in-out infinite alternate;
}

.neon-bg__grid {
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 20%, rgba(0,0,0,.95) 100%);
  animation: neonGridShift 18s linear infinite;
}

.app-shell {
  background: rgba(7,3,17,.28) !important;
  backdrop-filter: blur(10px);
}

.topbar {
  background: linear-gradient(to bottom, rgba(7,3,17,.94), rgba(7,3,17,.62), transparent) !important;
}

.hero-card,
.quick-card,
.radio-card,
.pwa-card,
.about-card,
.store-card,
.more-item,
.dj-live-card,
.listeners-card,
.volume-card,
.bottom-nav,
.chat-frame {
  backdrop-filter: blur(18px);
}

.hero-card {
  box-shadow:
    0 34px 95px rgba(0,0,0,.62),
    0 0 60px rgba(124,60,255,.22),
    0 0 28px rgba(255,47,165,.12),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
}

.hero-card::before {
  animation:
    heroPanelGlow 14s ease-in-out infinite alternate,
    neonPanelPulse 7s ease-in-out infinite alternate !important;
}

.quick-card,
.store-card,
.more-item,
.radio-card,
.pwa-card,
.about-card,
.volume-card,
.dj-live-card,
.listeners-card {
  border-color: rgba(255,255,255,.14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    rgba(11,7,26,.74) !important;
}

.bottom-nav {
  background: rgba(10,5,22,.86) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.52), 0 0 30px rgba(124,60,255,.12);
}

.main-play,
.wide-play,
.app-download-prompt__button,
.entry-intro__button {
  box-shadow:
    0 15px 40px rgba(124,60,255,.42),
    0 0 30px rgba(255,47,165,.22);
}

body.is-playing .neon-bg__blob { opacity: .72; }
body.is-playing .neon-bg__line { opacity: .62; }
body.is-playing .neon-bg__grid { opacity: .11; }
body.is-playing .stage-lights__beam { opacity: .48; }

@keyframes neonBlobOne {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(130px, 60px, 0) scale(1.08); }
  100% { transform: translate3d(220px, -16px, 0) scale(.95); }
}

@keyframes neonBlobTwo {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-120px, -30px, 0) scale(1.06); }
  100% { transform: translate3d(-220px, 82px, 0) scale(.94); }
}

@keyframes neonBlobThree {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-70px, -100px, 0) scale(1.07); }
  100% { transform: translate3d(90px, -24px, 0) scale(.95); }
}

@keyframes neonLineOne {
  0%   { transform: rotate(-14deg) translate3d(-40px, 0, 0) scale(1); }
  50%  { transform: rotate(-9deg) translate3d(100px, 26px, 0) scale(1.05); }
  100% { transform: rotate(-16deg) translate3d(200px, -18px, 0) scale(.98); }
}

@keyframes neonLineTwo {
  0%   { transform: rotate(11deg) translate3d(0, 0, 0) scale(1); }
  50%  { transform: rotate(7deg) translate3d(-120px, -22px, 0) scale(1.04); }
  100% { transform: rotate(13deg) translate3d(-220px, 26px, 0) scale(.98); }
}

@keyframes neonLineThree {
  0%   { transform: rotate(-8deg) translate3d(0, 0, 0) scale(1); }
  50%  { transform: rotate(-5deg) translate3d(86px, -20px, 0) scale(1.03); }
  100% { transform: rotate(-10deg) translate3d(-26px, 16px, 0) scale(.98); }
}

@keyframes neonGridShift {
  from { transform: translateY(0); }
  to   { transform: translateY(34px); }
}

@keyframes neonPanelPulse {
  0%   { opacity: 1; }
  100% { opacity: .9; }
}

@media (max-width: 720px) {
  .neon-bg__blob--one {
    width: 310px;
    height: 310px;
    left: -130px;
    top: 10%;
  }

  .neon-bg__blob--two {
    width: 340px;
    height: 340px;
    right: -150px;
    top: 40%;
  }

  .neon-bg__blob--three {
    width: 300px;
    height: 300px;
    left: -20px;
    bottom: -120px;
  }

  .neon-bg__line--one,
  .neon-bg__line--two,
  .neon-bg__line--three {
    width: 620px;
    height: 62px;
    filter: blur(12px);
    opacity: .42;
  }

  .neon-bg__grid {
    background-size: 28px 28px;
    opacity: .06;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neon-bg__blob,
  .neon-bg__line,
  .neon-bg__grid {
    animation: none !important;
  }
}


/* ===== V21: corrección real del fondo neón ===== */
html,
body {
  min-height: 100%;
}

body {
  position: relative;
  isolation: isolate;
  background: #05020d !important;
}

.neon-bg {
  z-index: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,47,165,.32), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(124,60,255,.34), transparent 34%),
    radial-gradient(circle at 46% 94%, rgba(51,217,255,.24), transparent 30%),
    linear-gradient(180deg, #05020d 0%, #100625 50%, #060311 100%) !important;
}

.neon-bg::before,
.neon-bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.neon-bg::before {
  background:
    conic-gradient(
      from 90deg at 50% 50%,
      rgba(255,47,165,0) 0deg,
      rgba(255,47,165,.22) 55deg,
      rgba(124,60,255,.28) 110deg,
      rgba(51,217,255,.16) 165deg,
      rgba(255,47,165,0) 240deg,
      rgba(255,47,165,.18) 310deg,
      rgba(255,47,165,0) 360deg
    );
  filter: blur(36px);
  opacity: .75;
  animation: neonHaloRotate 24s linear infinite;
}

.neon-bg::after {
  background:
    repeating-linear-gradient(
      125deg,
      transparent 0 90px,
      rgba(255,47,165,.09) 92px 98px,
      transparent 100px 180px,
      rgba(51,217,255,.08) 182px 188px
    );
  filter: blur(10px);
  opacity: .52;
  animation: neonSweep 14s linear infinite;
}

.neon-bg__blob {
  z-index: 1;
  opacity: .72 !important;
  filter: blur(28px) saturate(1.25) !important;
}

.neon-bg__line {
  z-index: 2;
  opacity: .66 !important;
  filter: blur(12px) saturate(1.35) !important;
}

.neon-bg__grid {
  z-index: 3;
  opacity: .10 !important;
}

.app-shell {
  position: relative;
  z-index: 2 !important;
  background: rgba(7,3,17,.12) !important;
  backdrop-filter: blur(5px) !important;
}

.topbar {
  z-index: 40;
}

.stage-lights {
  z-index: 1 !important;
}

.hero-card,
.quick-card,
.radio-card,
.pwa-card,
.about-card,
.store-card,
.more-item,
.dj-live-card,
.listeners-card,
.volume-card,
.chat-frame {
  background-color: rgba(10,6,24,.64) !important;
}

@keyframes neonHaloRotate {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.08); }
}

@keyframes neonSweep {
  from { transform: translate3d(-8%, -3%, 0); }
  to { transform: translate3d(8%, 3%, 0); }
}

@media (max-width: 720px) {
  .neon-bg::before {
    inset: -30%;
    opacity: .62;
  }

  .neon-bg::after {
    opacity: .38;
  }

  .app-shell {
    background: rgba(7,3,17,.08) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neon-bg::before,
  .neon-bg::after {
    animation: none !important;
  }
}


/* ===== V22: animación en logo y reproductores ===== */
.cover-wrap {
  overflow: visible !important;
}

.cover-particles {
  position: absolute;
  inset: -14px;
  z-index: 2;
  pointer-events: none;
  animation: coverOrbit 14s linear infinite;
}

.cover-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ff8fd2 54%, #69ecff);
  box-shadow:
    0 0 14px rgba(255,255,255,.45),
    0 0 20px rgba(255,47,165,.35);
  opacity: .8;
}

.cover-particles span:nth-child(1) { left: 50%; top: -4px; transform: translateX(-50%); }
.cover-particles span:nth-child(2) { right: 8%; top: 18%; }
.cover-particles span:nth-child(3) { right: 2%; bottom: 32%; }
.cover-particles span:nth-child(4) { left: 50%; bottom: -2px; transform: translateX(-50%); }
.cover-particles span:nth-child(5) { left: 6%; bottom: 20%; }
.cover-particles span:nth-child(6) { left: 8%; top: 18%; }

.cover-eq {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 160px;
  height: 44px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
  opacity: .96;
}

.cover-eq span,
.player-visualizer span,
.wide-play-visualizer span {
  display: block;
  border-radius: 999px;
  transform-origin: bottom center;
  background: linear-gradient(to top, #ff2fa5 0%, #8b43ff 58%, #33d9ff 100%);
  box-shadow: 0 0 14px rgba(124,60,255,.18);
  animation: eqBounce 1.25s ease-in-out infinite alternate;
}

.cover-eq span {
  width: 7px;
  height: 12px;
}

.cover-eq span:nth-child(2n) { animation-duration: 1s; }
.cover-eq span:nth-child(3n) { animation-duration: 1.45s; }
.cover-eq span:nth-child(1) { height: 14px; }
.cover-eq span:nth-child(2) { height: 24px; }
.cover-eq span:nth-child(3) { height: 18px; }
.cover-eq span:nth-child(4) { height: 30px; }
.cover-eq span:nth-child(5) { height: 20px; }
.cover-eq span:nth-child(6) { height: 34px; }
.cover-eq span:nth-child(7) { height: 20px; }
.cover-eq span:nth-child(8) { height: 28px; }
.cover-eq span:nth-child(9) { height: 16px; }
.cover-eq span:nth-child(10) { height: 22px; }
.cover-eq span:nth-child(11) { height: 12px; }

.main-play,
.wide-play {
  position: relative;
  overflow: visible !important;
  isolation: isolate;
}

.main-play::before,
.main-play::after,
.wide-play::before,
.wide-play::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.main-play::before {
  width: 118px;
  height: 118px;
  border: 2px solid rgba(255,47,165,.36);
  animation: playPulseOne 2.4s ease-out infinite;
}

.main-play::after {
  width: 144px;
  height: 144px;
  border: 2px solid rgba(51,217,255,.20);
  animation: playPulseTwo 2.4s ease-out infinite .45s;
}

.wide-play::before {
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: 2px solid rgba(255,47,165,.20);
  animation: widePulseOne 2.6s ease-in-out infinite;
}

.wide-play::after {
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 1px solid rgba(51,217,255,.14);
  animation: widePulseTwo 2.6s ease-in-out infinite .45s;
}

.player-visualizer,
.wide-play-visualizer {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
}

.player-visualizer {
  height: 36px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.wide-play-visualizer {
  height: 26px;
  margin-top: 16px;
}

.player-visualizer span {
  width: 6px;
  height: 10px;
}

.wide-play-visualizer span {
  width: 5px;
  height: 8px;
}

.player-visualizer span:nth-child(2n),
.wide-play-visualizer span:nth-child(2n) {
  animation-duration: 1.05s;
}

.player-visualizer span:nth-child(3n),
.wide-play-visualizer span:nth-child(3n) {
  animation-duration: 1.42s;
}

.player-visualizer span:nth-child(1) { height: 11px; }
.player-visualizer span:nth-child(2) { height: 18px; }
.player-visualizer span:nth-child(3) { height: 24px; }
.player-visualizer span:nth-child(4) { height: 14px; }
.player-visualizer span:nth-child(5) { height: 30px; }
.player-visualizer span:nth-child(6) { height: 20px; }
.player-visualizer span:nth-child(7) { height: 32px; }
.player-visualizer span:nth-child(8) { height: 16px; }
.player-visualizer span:nth-child(9) { height: 25px; }
.player-visualizer span:nth-child(10) { height: 13px; }
.player-visualizer span:nth-child(11) { height: 20px; }
.player-visualizer span:nth-child(12) { height: 10px; }

.wide-play-visualizer span:nth-child(1) { height: 8px; }
.wide-play-visualizer span:nth-child(2) { height: 14px; }
.wide-play-visualizer span:nth-child(3) { height: 10px; }
.wide-play-visualizer span:nth-child(4) { height: 18px; }
.wide-play-visualizer span:nth-child(5) { height: 12px; }
.wide-play-visualizer span:nth-child(6) { height: 20px; }
.wide-play-visualizer span:nth-child(7) { height: 12px; }
.wide-play-visualizer span:nth-child(8) { height: 17px; }
.wide-play-visualizer span:nth-child(9) { height: 11px; }
.wide-play-visualizer span:nth-child(10) { height: 8px; }

.player-status {
  letter-spacing: .05em;
  animation: statusGlow 2.6s ease-in-out infinite alternate;
}

body.is-playing .cover-particles {
  animation-duration: 8s;
}

body.is-playing .cover-eq span,
body.is-playing .player-visualizer span,
body.is-playing .wide-play-visualizer span {
  animation-duration: .62s;
  opacity: 1;
}

body.is-playing .main-play::before {
  animation-duration: 1.4s;
}

body.is-playing .main-play::after {
  animation-duration: 1.4s;
  animation-delay: .24s;
}

body.is-playing .wide-play::before,
body.is-playing .wide-play::after {
  animation-duration: 1.7s;
}

body.is-playing .cover-logo {
  animation:
    logoFloat 1.8s ease-in-out infinite,
    coverBeat 1.1s ease-in-out infinite alternate;
}

@keyframes coverOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes eqBounce {
  0% { transform: scaleY(.28); opacity: .55; }
  100% { transform: scaleY(1); opacity: 1; }
}

@keyframes playPulseOne {
  0% { opacity: .6; transform: translate(-50%, -50%) scale(.86); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.32); }
}

@keyframes playPulseTwo {
  0% { opacity: .45; transform: translate(-50%, -50%) scale(.82); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.42); }
}

@keyframes widePulseOne {
  0%, 100% { opacity: .48; transform: translate(-50%, -50%) scale(.98); }
  50% { opacity: .15; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes widePulseTwo {
  0%, 100% { opacity: .32; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: .08; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes statusGlow {
  from { text-shadow: 0 0 0 rgba(255,255,255,0); opacity: .88; }
  to { text-shadow: 0 0 14px rgba(255,47,165,.16); opacity: 1; }
}

@keyframes coverBeat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-4px) scale(1.04); }
}

@media (max-width: 520px) {
  .cover-eq {
    width: 132px;
    gap: 4px;
  }

  .cover-eq span {
    width: 6px;
  }

  .player-visualizer {
    height: 30px;
  }

  .wide-play-visualizer {
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-particles,
  .cover-eq span,
  .player-visualizer span,
  .wide-play-visualizer span,
  .main-play::before,
  .main-play::after,
  .wide-play::before,
  .wide-play::after,
  .player-status {
    animation: none !important;
  }
}

/* =========================================================
   V26 - TV remote focus + Push prompt + AdSense safe manual slots
   ========================================================= */

.web-ad-shell {
  width: 100%;
  min-height: 90px;
  margin: 18px 0 4px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.web-ad-shell[hidden] { display: none !important; }
.web-ad { width: 100%; min-height: 90px; }

/* Foco visible para teclado y control remoto. */
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible,
body.tv-remote-active button:focus,
body.tv-remote-active a:focus,
body.tv-remote-active input:focus,
body.tv-remote-active [tabindex]:focus {
  outline: 4px solid var(--cyan) !important;
  outline-offset: 4px !important;
  box-shadow:
    0 0 0 8px rgba(51,217,255,.14),
    0 0 32px rgba(255,47,165,.45) !important;
}

body.tv-remote-active .main-play:focus,
body.tv-remote-active .wide-play:focus,
body.tv-remote-active .nav-item:focus,
body.tv-remote-active .quick-card:focus,
body.tv-remote-active .more-item:focus,
body.tv-remote-active .store-card:focus {
  transform: scale(1.045);
  z-index: 80;
}

body.tv-remote-active .nav-item:focus {
  background: linear-gradient(135deg, rgba(51,217,255,.24), rgba(255,47,165,.30));
  color: #fff;
}

.tv-remote-hint {
  position: fixed;
  z-index: 9999;
  top: max(20px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 36px));
  padding: 15px 20px;
  border: 1px solid rgba(51,217,255,.45);
  border-radius: 18px;
  background: rgba(8,5,20,.94);
  box-shadow: 0 16px 55px rgba(0,0,0,.55), 0 0 28px rgba(51,217,255,.17);
  text-align: center;
  backdrop-filter: blur(16px);
}
.tv-remote-hint[hidden] { display: none !important; }
.tv-remote-hint strong,
.tv-remote-hint span { display: block; }
.tv-remote-hint strong { color: #fff; font-size: 1rem; }
.tv-remote-hint span { margin-top: 4px; color: #cfc6dc; font-size: .88rem; }

/* Ajustes de "10-foot UI" únicamente cuando detectamos un navegador de TV. */
body.tv-device {
  padding: 1.5vh 0 !important;
}
body.tv-device .app-shell {
  width: min(94vw, 1080px) !important;
  min-height: 97vh !important;
}
body.tv-device .topbar {
  min-height: 88px;
  padding-inline: 28px;
}
body.tv-device .brand img {
  width: 188px;
  max-height: 64px;
}
body.tv-device .screen {
  padding: 18px 30px 128px;
}
body.tv-device .hero-card {
  min-height: 690px;
}
body.tv-device .bottom-nav {
  width: min(90vw, 1000px) !important;
  height: 88px;
  padding: 9px 8px;
  bottom: 18px;
}
body.tv-device .nav-item {
  border-radius: 20px;
}
body.tv-device .nav-item small {
  font-size: .82rem;
}
body.tv-device .nav-item span {
  font-size: 1.55rem;
}
body.tv-device .quick-card,
body.tv-device .more-item,
body.tv-device .store-card,
body.tv-device .wide-play {
  min-height: 68px;
}
body.tv-device .section-heading p,
body.tv-device .quick-card small,
body.tv-device .more-item small,
body.tv-device .store-card small {
  font-size: .95rem;
}

@media (prefers-reduced-motion: reduce) {
  body.tv-remote-active .main-play:focus,
  body.tv-remote-active .wide-play:focus,
  body.tv-remote-active .nav-item:focus,
  body.tv-remote-active .quick-card:focus,
  body.tv-remote-active .more-item:focus,
  body.tv-remote-active .store-card:focus {
    transform: none;
  }
}


/* =========================================================
   V25 - Invitación visible para activar notificaciones Push
   ========================================================= */
.push-prompt {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.push-prompt[hidden] { display: none !important; }

.push-prompt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,1,10,.82);
  backdrop-filter: blur(10px);
}

.push-prompt__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 28px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,47,165,.30), transparent 42%),
    linear-gradient(155deg, rgba(24,11,52,.99), rgba(8,4,20,.99));
  box-shadow: 0 32px 100px rgba(0,0,0,.70), 0 0 42px rgba(124,60,255,.20);
  text-align: center;
}

.push-prompt__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.055) 42%, transparent 66%);
}

.push-prompt__close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.push-prompt__icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 2px auto 16px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,47,165,.25), rgba(124,60,255,.34), rgba(51,217,255,.16));
  box-shadow: 0 14px 42px rgba(124,60,255,.30);
}

.push-prompt__icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 20px;
}

.push-prompt__bell {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid #130929;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2fa5, #7c3cff 65%, #33d9ff);
  box-shadow: 0 8px 24px rgba(255,47,165,.35);
  font-size: 1.2rem;
}

.push-prompt__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #ff9bd4;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.push-prompt__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 9vw, 3.35rem);
  line-height: .94;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #ff9bd4 48%, #a7efff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.push-prompt__copy p {
  max-width: 410px;
  margin: 0 auto 20px;
  color: #ddd3e7;
  font-size: .96rem;
  line-height: 1.55;
}

.push-prompt__button,
.push-prompt__later {
  width: 100%;
  min-height: 54px;
  border-radius: 17px;
  font: inherit;
  font-weight: 900;
}

.push-prompt__button {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, #ff2fa5, #7c3cff 62%, #33d9ff);
  color: #fff;
  box-shadow: 0 14px 34px rgba(124,60,255,.34);
}

.push-prompt__button:disabled { opacity: .72; }

.push-prompt__later {
  min-height: 46px;
  margin-top: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #cfc5db;
}

.push-prompt__status {
  display: block;
  margin-top: 9px;
  color: #a99db7;
  font-size: .74rem;
  line-height: 1.35;
}

body.tv-device .push-prompt__panel {
  width: min(760px, 76vw);
  padding: 38px 38px 28px;
}
body.tv-device .push-prompt__copy p { font-size: 1.08rem; }
body.tv-device .push-prompt__button,
body.tv-device .push-prompt__later { min-height: 66px; font-size: 1.05rem; }

@media (max-width: 520px) {
  .push-prompt { padding: 12px; }
  .push-prompt__panel { padding: 24px 17px 17px; border-radius: 26px; }
  .push-prompt__icon { width: 84px; height: 84px; }
  .push-prompt__icon img { width: 68px; height: 68px; }
}


/* V26: anuncios manuales no invasivos. Nunca flotan ni cubren controles. */
.web-ad-shell {
  position: relative;
  z-index: 1;
  max-width: 100%;
  contain: layout paint;
}
.web-ad-shell .adsbygoogle {
  position: static !important;
  max-width: 100% !important;
}
