/* ========================================================
   CALAVERA CLUB — Rock 80s synthwave style
   ======================================================== */

:root {
  --ink: #06010f;
  --bg: #0d0420;
  --bg-2: #160732;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.08);
  --border: rgba(255, 255, 255, 0.10);
  --rose: #ff2d75;
  --rose-dim: #ff85b6;
  --cyan: #00f0ff;
  --cyan-dim: #7df3ff;
  --purple: #b026ff;
  --purple-dim: #d27dff;
  --yellow: #ffd700;
  --green: #39ff14;
  --ash: #ece6ff;
  --ash-dim: #a59cc0;
  --ash-muted: #6b6090;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--ash);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- BG synthwave grid ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(176,38,255,0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(255,45,117,0.30), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 100%, rgba(0,240,255,0.25), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #0a0220 100%);
  pointer-events: none;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,45,117,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.bg-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.02) 3px, transparent 4px);
  pointer-events: none;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Anton', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.mono { font-family: 'VT323', 'Courier New', monospace; font-size: 1.15em; letter-spacing: 0.04em; }
a { color: var(--rose-dim); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rose); }

.eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--cyan); }

/* ---------- Topbar (live indicator) ---------- */
.topbar {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--ash-dim);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px; gap: 18px;
}
.live-dot {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rose);
}
.live-dot .pulse {
  width: 8px; height: 8px; background: var(--rose); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,45,117,.8);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,45,117,.8); }
  70% { box-shadow: 0 0 0 10px rgba(255,45,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,117,0); }
}
.topbar-right { display: flex; gap: 18px; }
.topbar-right span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(6,1,15,0.7);
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.site-header.scrolled { background: rgba(6,1,15,0.92); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 18px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.logo-mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-text { line-height: 1; }
.logo-text .accent { color: var(--rose); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--ash-dim);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: #fff; }
.nav a.is-active { color: var(--cyan); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.menu-btn { display: none; background: none; border: 1px solid var(--border); color: #fff; width: 42px; height: 42px; border-radius: 8px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .25s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--purple));
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(255,45,117,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(255,45,117,0.8); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  box-shadow: inset 0 0 0 0 var(--cyan);
}
.btn-ghost:hover { color: var(--ink); background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 90px 0 140px;
  min-height: 95vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  margin: 18px 0 24px;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 50%, #d27dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255,45,117,0.3);
}
.hero h1 .neon {
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  text-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan);
}
.hero .lead {
  font-size: 1.1rem;
  color: var(--ash-dim);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--ash-muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { color: var(--green); }

/* ===== Now playing card (hero) ===== */
.now-card {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px 16px 18px;
  background: linear-gradient(135deg, rgba(255,45,117,0.10), rgba(0,240,255,0.06));
  border: 1px solid rgba(255,45,117,0.30);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  max-width: 540px;
  box-shadow: 0 12px 40px -16px rgba(255,45,117,0.35);
  position: relative;
  overflow: hidden;
}
.now-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(176,38,255,0.18), transparent 60%);
  pointer-events: none;
}
.now-card-cover {
  width: 76px; height: 76px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a1252, #0d0420);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 24px rgba(255,45,117,0.45), inset 0 0 0 2px rgba(255,255,255,0.05);
  animation: cover-spin 14s linear infinite paused;
  z-index: 1;
}
.now-card.is-playing .now-card-cover { animation-play-state: running; }
.now-card-cover::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: #06010f;
  border: 2px solid rgba(255,45,117,0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.now-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.now-card-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.now-card-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace;
  color: var(--rose);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.now-card-eyebrow .pulse-dot {
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,45,117,0.7);
  animation: pulse 1.6s infinite;
}
.now-card-eyebrow .viz-bars { height: 14px; margin-left: 4px; }
.now-card-eyebrow .viz-bars i { width: 2px; }
.now-card-title {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 18px rgba(255,45,117,0.25);
}
.now-card-artist {
  color: var(--cyan-dim);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 540px) {
  .now-card { gap: 14px; padding: 14px 16px 14px 14px; }
  .now-card-cover { width: 60px; height: 60px; }
  .now-card-title { font-size: 1.25rem; }
}

/* Calavera SVG con neon */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skull {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 0 30px rgba(255,45,117,0.5)) drop-shadow(0 0 60px rgba(176,38,255,0.4));
  animation: skull-float 6s ease-in-out infinite;
}
@keyframes skull-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.skull-halo {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(176,38,255,0.4), transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(255,45,117,0.35), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,240,255,0.3), transparent 50%);
  z-index: -1;
  filter: blur(20px);
  animation: halo-spin 18s linear infinite;
}
@keyframes halo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Visualizer bars */
.viz-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-left: 12px;
}
.viz-bars i {
  width: 3px;
  background: var(--cyan);
  display: block;
  border-radius: 2px;
  animation: viz 1s ease-in-out infinite;
}
.viz-bars i:nth-child(1) { animation-delay: 0s; height: 40%; }
.viz-bars i:nth-child(2) { animation-delay: .1s; height: 70%; }
.viz-bars i:nth-child(3) { animation-delay: .2s; height: 100%; }
.viz-bars i:nth-child(4) { animation-delay: .3s; height: 60%; }
.viz-bars i:nth-child(5) { animation-delay: .4s; height: 85%; }
.viz-bars i:nth-child(6) { animation-delay: .5s; height: 50%; }
@keyframes viz {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1.2); }
}

/* ---------- Section base ---------- */
section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 18px 0 20px;
  letter-spacing: 0.01em;
}
.section-head p { color: var(--ash-dim); font-size: 1.05rem; }

/* ---------- Nosotros ---------- */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.nosotros-text h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 16px 0 24px;
}
.nosotros-text p { color: var(--ash-dim); margin: 0 0 16px; }
.nosotros-text strong { color: var(--rose); font-weight: 600; }
.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}
.stat-card {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--rose); }
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--cyan));
}
.stat-card .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  background: linear-gradient(180deg, #fff, var(--rose-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-card .l { color: var(--ash-dim); font-size: .82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

/* ---------- Caletas (polaroid cards) ---------- */
.caletas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}
.caleta {
  background: linear-gradient(180deg, #1a0b35 0%, #0d0420 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.caleta:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: var(--rose);
  box-shadow: 0 24px 60px -12px rgba(255,45,117,0.4);
}
.caleta-cover {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1252, #0d0420);
}
.caleta-cover img { width: 100%; height: 100%; object-fit: cover; }
.caleta-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--rose);
  color: #fff;
  font-family: 'VT323', monospace;
  font-size: .92rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,45,117,0.6);
}
.caleta-body { padding: 24px 22px 26px; }
.caleta-song {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
}
.caleta-artist {
  font-family: 'VT323', monospace;
  font-size: 1.08rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin: 4px 0 12px;
}
.caleta-story { color: var(--ash-dim); font-size: .92rem; line-height: 1.55; margin: 0 0 14px; }
.caleta-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'VT323', monospace;
  font-size: .95rem;
  color: var(--ash-muted);
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  letter-spacing: 0.05em;
}
.caleta-play {
  color: var(--rose);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}

/* ---------- Programación (timeline) ---------- */
.schedule-list {
  display: grid;
  gap: 14px;
}
.show-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: center;
  transition: border-color .25s, background .25s;
}
.show-card:hover { border-color: var(--cyan); background: var(--surface-2); }
.show-when {
  font-family: 'VT323', monospace;
}
.show-when .day { color: var(--cyan); font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.show-when .time { color: #fff; font-size: 1.5rem; margin-top: 4px; }
.show-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 0.02em; line-height: 1; margin: 0 0 6px; }
.show-host { color: var(--rose-dim); font-family: 'VT323', monospace; letter-spacing: 0.05em; margin-bottom: 6px; }
.show-desc { color: var(--ash-dim); font-size: .92rem; margin: 0; }
.show-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(176,38,255,0.5);
}

/* ---------- Locutores ---------- */
.locutor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 26px;
}
.locutor {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.locutor:hover { transform: translateY(-6px); border-color: var(--rose); }
.locutor-photo {
  width: 130px; height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--rose), var(--cyan)) border-box;
}
.locutor-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.locutor-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.65rem; color: #fff; margin: 0 0 4px; letter-spacing: 0.04em; }
.locutor-role { color: var(--cyan); font-family: 'VT323', monospace; font-size: .98rem; letter-spacing: 0.06em; margin-bottom: 12px; }
.locutor-bio { color: var(--ash-dim); font-size: .9rem; margin: 0 0 14px; }
.locutor-fav { color: var(--rose-dim); font-family: 'VT323', monospace; font-size: .92rem; letter-spacing: 0.04em; border-top: 1px dashed var(--border); padding-top: 12px; }

/* ---------- Bandas carrusel ---------- */
.bandas-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.bandas-track {
  display: flex;
  gap: 18px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.banda-chip {
  display: inline-flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 220px;
  transition: border-color .25s, transform .25s;
}
.banda-chip:hover { border-color: var(--rose); transform: translateY(-3px); }
.banda-chip .name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; letter-spacing: 0.04em; }
.banda-chip .meta { font-family: 'VT323', monospace; color: var(--ash-muted); font-size: .92rem; letter-spacing: 0.04em; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bandas-wrap:hover .bandas-track { animation-play-state: paused; }

/* ---------- Podcasts ---------- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 22px;
}
.podcast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.podcast:hover { border-color: var(--cyan); transform: translateY(-4px); }
.podcast-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2a1252, #160732);
  position: relative;
}
.podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast-cover .dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: var(--cyan);
  padding: 4px 8px; border-radius: 4px;
  font-family: 'VT323', monospace; font-size: .9rem; letter-spacing: 0.05em;
}
.podcast-body { padding: 20px 22px 22px; }
.podcast-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; margin: 0 0 6px; letter-spacing: 0.02em; }
.podcast-meta { color: var(--ash-muted); font-family: 'VT323', monospace; font-size: .92rem; letter-spacing: 0.05em; margin: 0 0 10px; }
.podcast-desc { color: var(--ash-dim); font-size: .9rem; margin: 0; }

/* ---------- Noticias ---------- */
.noticia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.noticia {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.noticia:hover { border-color: var(--rose); transform: translateY(-4px); }
.noticia-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a0b35, #2a1252);
}
.noticia-cover img { width: 100%; height: 100%; object-fit: cover; }
.noticia-body { padding: 22px 24px 24px; }
.noticia-cat { color: var(--cyan); font-family: 'VT323', monospace; font-size: .92rem; letter-spacing: 0.08em; text-transform: uppercase; }
.noticia-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; color: #fff; margin: 10px 0 10px; letter-spacing: 0.02em; line-height: 1.1; }
.noticia-date { color: var(--ash-muted); font-family: 'VT323', monospace; font-size: .92rem; margin-top: 12px; }
.noticia-excerpt { color: var(--ash-dim); font-size: .92rem; margin: 0; }

/* ---------- Newsletter ---------- */
.news {
  background: linear-gradient(135deg, rgba(176,38,255,0.18), rgba(255,45,117,0.18));
  border: 1px solid rgba(255,45,117,0.3);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,240,255,0.2), transparent 50%);
}
.news > * { position: relative; }
.news h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 14px 0 16px; }
.news p { color: var(--ash-dim); max-width: 540px; margin: 0 auto 30px; }
.news-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
  flex-wrap: wrap;
}
.news-form input {
  flex: 1; min-width: 220px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}
.news-form input:focus { outline: 2px solid var(--cyan); }
.news-msg { margin-top: 14px; min-height: 22px; font-family: 'VT323', monospace; letter-spacing: 0.05em; }
.news-msg.ok { color: var(--green); }
.news-msg.err { color: var(--rose); }

/* ---------- Contacto ---------- */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; margin-bottom: 12px; letter-spacing: 0.02em; }
.contact-info p { color: var(--ash-dim); margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-row:last-child { border: 0; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); color: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .info { font-family: 'VT323', monospace; color: var(--ash); font-size: 1.08rem; letter-spacing: 0.05em; }
.contact-row .info b { color: #fff; display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--ash);
  transition: all .25s;
}
.social-row a:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-3px); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form .field { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--cyan); border-color: transparent; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ---------- Player flotante ---------- */
.player {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(6,1,15,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,45,117,0.4);
  padding: 14px 24px;
  z-index: 70;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.player.is-on { transform: translateY(0); }
.player-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.player-cover {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1252, #0d0420);
  box-shadow: 0 0 32px rgba(255,45,117,0.5), inset 0 0 0 3px rgba(255,255,255,0.06);
  flex-shrink: 0;
  animation: cover-spin 12s linear infinite paused;
  position: relative;
}
.player-cover::after {
  /* punto central tipo vinilo */
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: #06010f;
  border: 2px solid rgba(255,45,117,0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.player.is-playing .player-cover { animation-play-state: running; }
@keyframes cover-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-meta { min-width: 0; }
.player-now { font-family: 'VT323', monospace; font-size: .9rem; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; }
.player-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: #fff; letter-spacing: 0.02em; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { color: var(--ash-dim); font-size: .88rem; }
.player-controls {
  display: flex; align-items: center; gap: 10px;
}
.player-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--rose);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .25s;
  box-shadow: 0 0 24px rgba(255,45,117,0.6);
}
.player-btn:hover { transform: scale(1.06); }
.player-btn.big { width: 58px; height: 58px; }
.player-vol {
  display: flex; align-items: center; gap: 8px;
  color: var(--ash-dim);
}
.player-vol input {
  width: 100px;
  accent-color: var(--rose);
}
.player-status {
  font-family: 'VT323', monospace;
  font-size: .88rem;
  color: var(--ash-muted);
  letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 6px;
}
.player-status .pulse { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }

/* ---------- Footer ---------- */
.site-footer {
  background: #04010a;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
  color: var(--ash-muted);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h5 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.12em; color: #fff; margin: 0 0 14px; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .92rem; }
.footer-grid a { color: var(--ash-dim); }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand p { color: var(--ash-dim); margin: 14px 0; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: 'VT323', monospace;
  font-size: .92rem;
  letter-spacing: 0.05em;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,1,15,0.97); flex-direction: column; padding: 26px; border-top: 1px solid var(--border); gap: 20px; }
  .nav.is-open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .nosotros-grid, .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .show-card { grid-template-columns: 1fr; gap: 14px; }
  .show-ic { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  section { padding: 80px 0; }
  .hero { padding: 60px 0 100px; min-height: auto; }
  .player-inner { grid-template-columns: auto 1fr auto; }
  .player-vol { display: none; }
  body { padding-bottom: 92px; }
}
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .footer-grid { grid-template-columns: 1fr; }
}

body { padding-bottom: 124px; }

/* ===== TICKER de dedicatorias al aire ===== */
.ded-ticker {
  display: none;
  position: relative;
  background: linear-gradient(90deg, rgba(255,45,117,0.18), rgba(176,38,255,0.18), rgba(0,240,255,0.12));
  border-top: 1px solid rgba(255,45,117,0.45);
  border-bottom: 1px solid rgba(255,45,117,0.45);
  overflow: hidden;
  z-index: 60;
}
.ded-ticker.is-on { display: flex; align-items: center; }
.ded-ticker-label {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(6,1,15,0.85);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--rose);
  text-transform: uppercase;
  border-right: 1px solid rgba(255,45,117,0.4);
  position: relative;
  z-index: 2;
}
.ded-ticker-label .pulse-dot {
  width: 8px; height: 8px;
  background: var(--rose); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,45,117,0.7);
  animation: pulse 1.6s infinite;
}
.ded-ticker-track {
  flex: 1;
  display: flex;
  gap: 64px;
  white-space: nowrap;
  padding: 10px 0;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ded-ticker:hover .ded-ticker-track { animation-play-state: paused; }
.ded-ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ash);
  font-size: 1rem;
}
.ded-ticker-item .from {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.ded-ticker-item .pide {
  color: var(--rose-dim);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ded-ticker-item .song { color: #fff; font-weight: 600; }
.ded-ticker-item .arrow { color: var(--rose); font-size: 1.2rem; }
.ded-ticker-item .dedi {
  color: var(--ash-dim);
  font-style: italic;
}
.ded-ticker-item .sep {
  color: var(--rose);
  font-size: 1.5rem;
  opacity: 0.5;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Botón "caleta-play" (era span, ahora button) ===== */
.caleta-play {
  background: none; border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

/* ===== FAB pedir canción ===== */
.fab-pedir {
  position: fixed; right: 20px; bottom: 140px;
  z-index: 65;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--rose), var(--purple));
  color: #fff;
  border: 0; border-radius: 999px;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -8px rgba(255,45,117,0.6);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-pedir 3s ease-in-out infinite;
}
.fab-pedir:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 40px -8px rgba(255,45,117,0.8); }
.fab-pedir svg { stroke: #fff; }
@keyframes pulse-pedir {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(255,45,117,0.6), 0 0 0 0 rgba(255,45,117,0.5); }
  50% { box-shadow: 0 12px 30px -8px rgba(255,45,117,0.8), 0 0 0 14px rgba(255,45,117,0); }
}
@media(max-width:540px) {
  .fab-pedir { bottom: 110px; padding: 8px 14px; font-size: .95rem; }
  .fab-pedir span { display: none; }
}

/* ===== Modal dedicatoria ===== */
.ded-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.ded-modal.is-on { display: flex; }
.ded-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6,1,15,0.85);
  backdrop-filter: blur(8px);
  animation: fade-in .25s ease-out;
}
.ded-modal-card {
  position: relative;
  background: linear-gradient(180deg, #170734, #06010f);
  border: 1px solid rgba(255,45,117,0.4);
  border-radius: 18px;
  padding: 36px 32px 30px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 30px 80px -10px rgba(255,45,117,0.4), 0 0 60px rgba(176,38,255,0.25);
  animation: modal-up .35s cubic-bezier(.16,1,.3,1) both;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.ded-modal-card::before {
  content: "";
  position: absolute; left: 26px; right: 26px; top: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rose), var(--cyan), transparent);
}
.ded-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ash);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: all .2s;
}
.ded-modal-close:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

.ded-modal-head { text-align: center; margin-bottom: 22px; }
.ded-modal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'VT323', monospace;
  color: var(--cyan);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ded-modal-eyebrow .pulse-dot {
  width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,240,255,0.7);
  animation: pulse 1.6s infinite;
}
.ded-modal-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #fff 50%, var(--rose));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 20px rgba(255,45,117,0.3);
}
.ded-modal-head p { color: var(--ash-dim); font-size: .94rem; margin: 0; }

.ded-form { display: flex; flex-direction: column; gap: 14px; }
.ded-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ded-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'VT323', monospace;
  font-size: .95rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.ded-form .req { color: var(--rose); }
.ded-form input, .ded-form textarea {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
}
.ded-form input:focus, .ded-form textarea:focus { outline: 2px solid var(--cyan); border-color: transparent; }
.ded-form textarea { resize: vertical; min-height: 60px; }
.ded-counter {
  font-size: .82rem; color: var(--ash-muted); letter-spacing: 0.04em;
  float: right; text-transform: none;
}
.ded-actions {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px;
}
.ded-actions .btn { padding: 12px 22px; }
.ded-msg {
  margin-top: 6px;
  min-height: 24px;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: center;
}
.ded-msg.ok { color: var(--green); }
.ded-msg.err { color: var(--rose); }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-up {
  from { transform: translateY(40px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 540px) {
  .ded-modal-card { padding: 28px 20px 24px; }
  .ded-modal-head h3 { font-size: 1.9rem; }
  .ded-row { grid-template-columns: 1fr; }
  .ded-ticker-track { animation-duration: 30s; }
  .ded-ticker-label { padding: 8px 12px; font-size: .9rem; }
}
@media(max-width: 540px) {
  body { padding-bottom: 100px; }
  .player-cover { width: 60px; height: 60px; }
  .player { padding: 10px 16px; }
}
