/* =====================================================
   NOAURA RADIO — styles.css
   Glassmorphism · Neon · Premium Feminine Dark
   ===================================================== */

:root {
  --bg: #080b12;
  --bg2: #0d1120;
  --bg3: #111827;
  --violet: #6c63ff;
  --pink: #ff4ecd;
  --pink2: #f72585;
  --teal: #4ecdc4;
  --purple: #9d4edd;
  --text: #f0eef8;
  --text-muted: #8b8aa8;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glow-v: rgba(108,99,255,0.35);
  --glow-p: rgba(255,78,205,0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
em { font-style: italic; color: var(--pink); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.15;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 99px; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}

.logo-n { color: var(--pink); }
.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--violet);
  margin-left: 6px;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--pink)) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 99px;
  font-weight: 600 !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(108,99,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108,99,255,0.6);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  padding: 16px 32px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.btn-large { padding: 20px 44px; font-size: 1.1rem; }

/* ═══════════════════════════════
   ORBs / BACKGROUND
═══════════════════════════════ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-1 { width: 500px; height: 500px; background: var(--violet); top: -100px; left: -100px; animation: float1 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--pink); top: 100px; right: -50px; animation: float2 10s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: var(--purple); bottom: -50px; left: 30%; animation: float3 12s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,20px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,30px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,78,205,0.12);
  border: 1px solid rgba(255,78,205,0.25);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,78,205,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,78,205,0); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
}

.title-line { display: block; color: var(--text); }
.title-em { display: block; }

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* VINYL */
.vinyl-container {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}

.vinyl {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    #1a1a2e 0%, #16213e 20%, #0f3460 40%,
    #1a1a2e 50%, #080b12 55%, #1a1a2e 60%,
    #080b12 65%, #1a1a2e 70%, #080b12 100%);
  box-shadow: 0 0 60px rgba(108,99,255,0.4), 0 0 120px rgba(255,78,205,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.05s linear;
}

.vinyl.spinning { animation: spin 4s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.vinyl-inner {
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 12px;
}

.vinyl-label { }
.vl-title { font-size: 0.55rem; font-weight: 700; display: block; color: var(--text); }
.vl-artist { font-size: 0.45rem; color: var(--text-muted); display: block; }

.vinyl-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ═══════════════════════════════
   PLAYER SECTION
═══════════════════════════════ */
.player-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.main-player-card {
  background: var(--glass);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 0 80px rgba(108,99,255,0.15);
}

.player-art {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.player-art-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108,99,255,0.3), rgba(255,78,205,0.3));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 220px;
}

.bars-container {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
}

.bar {
  width: 6px;
  background: linear-gradient(to top, var(--violet), var(--pink));
  border-radius: 3px;
  animation: barAnim 0.8s ease-in-out infinite alternate;
}

.bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.bar:nth-child(2) { height: 50px; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 65px; animation-delay: 0.05s; }
.bar:nth-child(5) { height: 45px; animation-delay: 0.15s; }
.bar:nth-child(6) { height: 55px; animation-delay: 0.3s; }
.bar:nth-child(7) { height: 30px; animation-delay: 0.25s; }
.bar:nth-child(8) { height: 60px; animation-delay: 0.1s; }
.bar:nth-child(9) { height: 40px; animation-delay: 0.2s; }

@keyframes barAnim { from{transform:scaleY(0.3)} to{transform:scaleY(1)} }

.bars-container.paused .bar,
.sp-bars.paused .sp-bar { animation-play-state: paused; }

.player-live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink2);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.1em;
}

.player-now {
  font-size: 0.75rem;
  color: var(--violet);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.player-song {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 6px;
}

.player-artist {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.player-controls-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ctrl-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ctrl-btn:hover { background: rgba(255,255,255,0.1); }

.ctrl-play {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--violet), var(--pink)) !important;
  border: none !important;
  font-size: 1.3rem;
  box-shadow: 0 0 30px rgba(108,99,255,0.5);
}

.ctrl-play:hover { transform: scale(1.08); box-shadow: 0 0 50px rgba(108,99,255,0.7); }

.player-volume {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.volume-slider, .sp-vol-slider {
  -webkit-appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--glass-border);
  cursor: pointer;
  outline: none;
}

.volume-slider::-webkit-slider-thumb,
.sp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  cursor: pointer;
}

.player-genres-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.genre-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.genre-chip:hover, .genre-chip.active {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: white;
  border-color: transparent;
}

/* ═══════════════════════════════
   GENEROS
═══════════════════════════════ */
.generos-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.generos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.genero-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.genero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c, var(--violet)), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.genero-card:hover::before, .genero-card.active::before { opacity: 0.15; }

.genero-card:hover {
  transform: translateY(-6px);
  border-color: var(--c, var(--violet));
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.genero-icon {
  font-size: 2rem;
  color: var(--c, var(--violet));
  margin-bottom: 16px;
  position: relative;
}

.genero-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
  position: relative;
}

.genero-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
}

.genero-listeners {
  font-size: 0.72rem;
  color: var(--c, var(--violet));
  font-family: var(--font-mono);
  position: relative;
}

/* ═══════════════════════════════
   HISTORIA
═══════════════════════════════ */
.historia-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.05), transparent);
}

.historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.historia-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.history-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  transition: all 0.3s;
}

.history-card.active {
  border-color: var(--violet);
  background: rgba(108,99,255,0.08);
  box-shadow: 0 0 40px rgba(108,99,255,0.2);
}

.hc-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--violet);
  margin-bottom: 8px;
}

.hc-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hc-desc { color: var(--text-muted); font-size: 0.9rem; }

.history-arrow {
  text-align: center;
  color: var(--violet);
  font-size: 1.2rem;
  padding: 12px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ═══════════════════════════════
   SERVICIOS
═══════════════════════════════ */
.servicios-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.servicio-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}

.servicio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 20px 60px rgba(108,99,255,0.1);
}

.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,78,205,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--violet);
  margin-bottom: 20px;
}

.servicio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.servicio-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════
   PLANES
═══════════════════════════════ */
.planes-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.planes-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -28px;
  margin-bottom: 48px;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-popular {
  border-color: var(--violet);
  background: rgba(108,99,255,0.08);
  box-shadow: 0 0 60px rgba(108,99,255,0.2);
  transform: scale(1.03);
}

.plan-popular:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: white;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-currency { font-size: 1.5rem; }
.plan-period { font-size: 1rem; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }

.plan-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.plan-features li i.fa-check { color: var(--violet); }
.plan-features li i.fa-xmark { color: var(--text-muted); }
.plan-features .plan-no { color: var(--text-muted); }

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-btn:hover {
  background: rgba(255,255,255,0.08);
}

.plan-btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border: none;
  box-shadow: 0 0 30px rgba(108,99,255,0.4);
}

.plan-btn-primary:hover {
  box-shadow: 0 0 50px rgba(108,99,255,0.6);
}

/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb-cta1 { width: 600px; height: 600px; background: var(--violet); top: 50%; left: 50%; transform: translate(-60%,-50%); opacity: 0.25; }
.orb-cta2 { width: 400px; height: 400px; background: var(--pink); top: 50%; left: 50%; transform: translate(-30%,-50%); opacity: 0.2; }

.cta-inner { position: relative; }

.cta-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════════════════════════════
   STICKY PLAYER
═══════════════════════════════ */
.sticky-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,11,18,0.92);
  backdrop-filter: blur(30px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  box-shadow: 0 -10px 60px rgba(108,99,255,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.sticky-player.visible { transform: translateY(0); }

.sp-art {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sp-art-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108,99,255,0.4), rgba(255,78,205,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
}

.sp-bar {
  width: 3px;
  background: linear-gradient(to top, var(--violet), var(--pink));
  border-radius: 2px;
  animation: barAnim 0.7s ease-in-out infinite alternate;
}

.sp-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.sp-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.sp-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.sp-bar:nth-child(4) { height: 20px; animation-delay: 0.05s; }
.sp-bar:nth-child(5) { height: 14px; animation-delay: 0.15s; }

.sp-info { flex: 1; min-width: 0; }
.sp-song { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-artist { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sp-badge {
  background: var(--pink2);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.sp-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sp-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.sp-btn:hover { background: rgba(255,255,255,0.1); }

.sp-play {
  background: linear-gradient(135deg, var(--violet), var(--pink)) !important;
  border: none !important;
  width: 42px;
  height: 42px;
  box-shadow: 0 0 20px rgba(108,99,255,0.5);
}

.sp-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 120px;
}

/* ═══════════════════════════════
   DASHBOARD
═══════════════════════════════ */
.dashboard-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.dashboard-overlay.open {
  pointer-events: all;
  opacity: 1;
}

.dashboard {
  width: 100%;
  display: flex;
  background: var(--bg);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.dashboard-overlay.open .dashboard { transform: translateY(0); }

.dash-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--bg2);
  border-right: 1px solid var(--glass-border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}

.dash-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 40px;
  padding: 0 8px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.dash-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.dash-link:hover { background: var(--glass); color: var(--text); }

.dash-link.active {
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,78,205,0.1));
  color: var(--text);
  border: 1px solid rgba(108,99,255,0.3);
}

.dash-link i { width: 18px; text-align: center; }

.dash-close-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.2s;
  margin-top: 20px;
}

.dash-close-btn:hover { color: var(--text); background: rgba(255,255,255,0.08); }

.dash-main {
  flex: 1;
  overflow-y: auto;
  padding: 32px 36px;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.dash-header h1 {
  font-size: 2rem;
  font-weight: 900;
}

.dash-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,78,205,0.12);
  border: 1px solid rgba(255,78,205,0.25);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--pink);
}

.dash-tab { display: none; }
.dash-tab.active { display: block; }

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dsc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--ic, 108, 99, 255), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ic, var(--violet));
  flex-shrink: 0;
}

.dsc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.dsc-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dash-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
}

.dash-card h3 {
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.log-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.log-item {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
}

.log-time {
  font-family: var(--font-mono);
  color: var(--violet);
  flex-shrink: 0;
}

.log-msg { color: var(--text-muted); }

.dash-now-playing {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dnp-art {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.3), rgba(255,78,205,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dnp-song {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dnp-artist {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* MUSIC TABLE */
.music-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.music-search input {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  flex: 1;
}

.music-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.music-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--glass-border);
}

.music-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
}

.music-table tr:hover td { background: var(--glass); }

.song-play-btn {
  background: none;
  border: none;
  color: var(--violet);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  transition: transform 0.2s;
}

.song-play-btn:hover { transform: scale(1.2); }

/* DJS */
.djs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dj-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dj-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dj-info { flex: 1; }
.dj-info h4 { font-size: 1rem; margin-bottom: 4px; }
.dj-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; }

.dj-status {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dj-status.online { color: #4ecdc4; }
.dj-status.offline { color: var(--text-muted); }

.dj-action {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.dj-action:hover { color: var(--violet); border-color: var(--violet); }

/* STATS */
.stats-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chart-container {
  height: 200px;
  position: relative;
}

.genre-bars { display: flex; flex-direction: column; gap: 14px; }

.gb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.gb-item > span:first-child { width: 60px; color: var(--text-muted); }
.gb-item > span:last-child { width: 35px; text-align: right; font-family: var(--font-mono); font-size: 0.78rem; }

.gb-bar {
  flex: 1;
  height: 6px;
  background: var(--glass-border);
  border-radius: 99px;
  overflow: hidden;
}

.gb-fill {
  height: 100%;
  background: var(--c, var(--violet));
  border-radius: 99px;
  box-shadow: 0 0 10px var(--c, var(--violet));
}

.city-list { display: flex; flex-direction: column; gap: 12px; }

.city-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.city-count {
  font-family: var(--font-mono);
  color: var(--violet);
  font-size: 0.82rem;
}

/* CONFIG */
.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.config-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.cf-field input, .cf-field textarea, .cf-field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.cf-field textarea { height: 80px; }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus {
  border-color: var(--violet);
}

.embed-code {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--violet);
  line-height: 1.6;
  word-break: break-all;
}

/* ═══════════════════════════════
   NOTIFICATION
═══════════════════════════════ */
.notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  background: var(--bg2);
  border: 1px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(108,99,255,0.3);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
  color: var(--text);
}

.notification.show { transform: translateX(0); }
.notification i { color: var(--violet); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .generos-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-overview { grid-template-columns: 1fr; }
  .config-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-visual { display: none; }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8,11,18,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    gap: 16px;
  }

  .nav-burger { display: flex; }

  .main-player-card {
    grid-template-columns: 1fr;
  }

  .player-art { max-width: 200px; margin: 0 auto; }

  .generos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: 1fr; }
  .planes-grid { grid-template-columns: 1fr; }
  .plan-popular { transform: scale(1); }
  .historia-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .dash-sidebar {
    width: 60px;
    padding: 20px 10px;
  }

  .dash-link span, .dash-close-btn span, .dash-logo .logo-rest { display: none; }
  .dash-logo .logo-n { font-size: 1.5rem; }
  .dash-nav { align-items: center; }
  .dash-link { padding: 12px; justify-content: center; }
  .dash-main { padding: 20px 16px; }
  .dash-row { grid-template-columns: 1fr; }
  .dash-stats-grid { grid-template-columns: 1fr 1fr; }
  .djs-grid { grid-template-columns: 1fr; }

  .sp-volume { display: none; }
}

@media (max-width: 480px) {
  .generos-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .dash-stats-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
