* {
  box-sizing: border-box;
}

:root {
  --bg: #050816;
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.10);
  --cyan: #18f5d3;
  --green: #1ed760;
  --purple: #c43cff;
  --red: #ff274b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 96px;
}

.bg-photo,
.bg-neon,
.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-photo {
  background-image: url('/img/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .28;
  filter: blur(1px);
  transform: scale(1.02);
}

.bg-neon {
  background:
    radial-gradient(circle at top left, rgba(24,245,211,.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(196,60,255,.16), transparent 32%);
}

.bg-overlay {
  background: rgba(0,0,0,.60);
}

.page {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 32px;
}

.main-title {
  text-align: center;
}

.main-title h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-shadow: 0 0 18px rgba(24,245,211,.25);
  word-break: break-word;
}

.main-title p {
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: clamp(16px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 700;
}

.layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: start;
}

.player-card,
.description-card,
.social-card {
  border: 1px solid var(--line);
  background: var(--soft);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.player-card {
  border-radius: 32px;
  padding: 24px;
  text-align: center;
}

.logo-stage {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.neon-circle {
  position: absolute;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--purple), var(--cyan));
  filter: blur(7px);
  opacity: .80;
}

.vinyl {
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #050505 0, #050505 6px, #171717 7px, #171717 10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  animation: spin 18s linear infinite;
}

.main-logo {
  position: relative;
  width: 72%;
  height: 72%;
  object-fit: contain;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  z-index: 4;
}

.logo-stage.playing .audio-ring {
  display: block;
}

.audio-ring {
  display: none;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24,245,211,.42);
  z-index: 1;
}

.ring-one {
  width: 108%;
  height: 108%;
  animation: ping 1.8s infinite;
}

.ring-two {
  width: 118%;
  height: 118%;
  border-color: rgba(196,60,255,.34);
  animation: pulse 1.4s infinite;
}

.equalizer {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: .80;
}

.logo-stage.playing .equalizer {
  display: flex;
}

.equalizer span {
  width: 8px;
  border-radius: 99px;
}

.equalizer span:nth-child(1) { height: 64px; background: var(--cyan); animation: eq 1s infinite; }
.equalizer span:nth-child(2) { height: 96px; background: var(--green); animation: eq 1.2s infinite; }
.equalizer span:nth-child(3) { height: 42px; background: var(--purple); animation: eq .9s infinite; }
.equalizer span:nth-child(4) { height: 82px; background: var(--cyan); animation: eq 1.4s infinite; }
.equalizer span:nth-child(5) { height: 58px; background: var(--green); animation: eq 1.1s infinite; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,39,75,.50);
  background: rgba(255,39,75,.10);
  color: #ff6b83;
  font-size: 14px;
  font-weight: 950;
}

.live-pill span {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,39,75,.8);
  animation: pulse 1.2s infinite;
}

.metadata-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(0,0,0,.25);
}

.metadata-card h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  word-break: break-word;
}

.metadata-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 18px);
}

.stats {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 14px;
}

.controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.round-btn {
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 30px;
  transition: transform .22s ease, background .22s ease;
}

.round-btn:hover {
  transform: scale(1.05);
}

.play-btn {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #03120d;
  box-shadow: 0 18px 45px rgba(24,245,211,.28);
}

.volume-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.10);
  color: var(--text);
}

.volume-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.volume-row span {
  color: var(--muted);
  font-weight: 700;
}

.volume-row strong {
  color: var(--cyan);
}

.volume-row input {
  width: 100%;
  accent-color: var(--cyan);
}

.description-card {
  margin-top: 38px;
  border-radius: 28px;
  padding: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.description-card p {
  margin: 0 0 8px;
}

.description-card strong {
  color: var(--cyan);
}

.social-card {
  border-radius: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.social-card h3 {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 950;
}

.social-list {
  display: grid;
  gap: 20px;
}

.social-list a {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: .22s ease;
}

.social-list a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.09);
}

.social-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 21px;
  border: 1px solid;
}

.facebook { color: #93c5fd; background: rgba(59,130,246,.20); border-color: rgba(96,165,250,.40); }
.whatsapp { color: #86efac; background: rgba(34,197,94,.20); border-color: rgba(74,222,128,.40); }
.playstore { color: var(--cyan); background: rgba(24,245,211,.20); border-color: rgba(24,245,211,.40); }
.instagram { color: #f9a8d4; background: rgba(236,72,153,.20); border-color: rgba(244,114,182,.40); }
.instagram2 { color: #d8b4fe; background: rgba(168,85,247,.20); border-color: rgba(192,132,252,.40); }

.social-list strong {
  display: block;
  font-size: 20px;
}

.social-list small {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 16px;
  word-break: break-word;
}

.sticky-player {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(5,8,22,.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 -18px 55px rgba(0,0,0,.32);
}

.sticky-player img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.sticky-info {
  flex: 1;
  min-width: 0;
}

.sticky-info strong,
.sticky-info span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-info strong {
  font-size: 18px;
}

.sticky-info span {
  margin-top: 5px;
  color: var(--cyan);
}

.mini-play {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #03120d;
  font-size: 21px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

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

@keyframes ping {
  0% { transform: scale(.92); opacity: .65; }
  75%, 100% { transform: scale(1.12); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: .45; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes eq {
  0%, 100% { transform: scaleY(.55); }
  50% { transform: scaleY(1.12); }
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 36px;
  }

  .social-card h3 {
    text-align: center;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .page {
    padding: 26px 14px 28px;
  }

  .player-card {
    padding: 16px;
    border-radius: 24px;
  }

  .logo-stage {
    width: min(280px, 100%);
  }

  .main-logo {
    border-radius: 22px;
  }

  .live-pill {
    margin-top: 26px;
  }

  .metadata-card {
    border-radius: 22px;
    padding: 16px;
  }

  .controls {
    gap: 14px;
  }

  .round-btn {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .volume-row {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    font-size: 14px;
  }

  .description-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 22px;
    font-size: 16px;
  }

  .social-list {
    gap: 14px;
  }

  .social-list a {
    padding: 16px;
    gap: 14px;
  }

  .social-list strong {
    font-size: 17px;
  }

  .social-list small {
    font-size: 14px;
  }

  .sticky-player {
    height: 82px;
    padding: 10px 12px;
    gap: 12px;
  }

  .sticky-player img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .sticky-info strong {
    font-size: 14px;
  }

  .sticky-info span {
    font-size: 12px;
  }

  .mini-play {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
