/* =====================================================
   RADIO STATION WEBSITE — Global Styles
   Dark Premium Theme with Neon Accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --bg-primary:    #07070f;
  --bg-secondary:  #0d0d1e;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-glass:      rgba(13,13,30,0.7);
  --accent:        #ff2d6b;
  --accent-2:      #7c3aed;
  --accent-3:      #06b6d4;
  --accent-glow:   rgba(255,45,107,0.35);
  --accent2-glow:  rgba(124,58,237,0.35);
  --text:          #ffffff;
  --text-muted:    rgba(255,255,255,0.55);
  --text-dim:      rgba(255,255,255,0.3);
  --border:        rgba(255,255,255,0.07);
  --border-glow:   rgba(255,45,107,0.4);
  --font:          'Outfit', sans-serif;
  --font-alt:      'Space Grotesk', sans-serif;
  --r-sm:  8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(255,45,107,0.25);
  --sticky-h: 80px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--sticky-h);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea { font-family: var(--font); }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== Section base ===== */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
}
.accent-dot { color: var(--accent); }

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--ease) 0.3s;
}
#site-header.scrolled { background: rgba(7,7,15,0.97); }
.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; }
.site-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.site-name span { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-nav a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.header-nav a:hover { color: var(--text); background: var(--bg-card); }
.header-nav a.active { color: var(--accent); }
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,107,0.15);
  border: 1px solid rgba(255,45,107,0.4);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.live-badge:hover { background: rgba(255,45,107,0.25); }
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== Hero Section ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124,58,237,0.2) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 30% 30%, rgba(255,45,107,0.12) 0%, transparent 50%),
              var(--bg-primary);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,45,107,0.12);
  border: 1px solid rgba(255,45,107,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-item { }
.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== Hero Player ===== */
.hero-player {
  background: rgba(13,13,30,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(124,58,237,0.15);
  transition: box-shadow 0.3s;
}
.hero-player.playing {
  border-color: rgba(255,45,107,0.3);
  box-shadow: var(--shadow-card), 0 0 80px rgba(255,45,107,0.2);
}
.player-now-playing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.album-art {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
  position: relative;
}
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-art-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.now-playing-info { flex: 1; min-width: 0; }
.np-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.np-title {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-artist { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* Equalizer Bars */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-left: auto;
}
.eq-bar {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: eq-bounce 0.8s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.eq-bar:nth-child(1) { animation-delay: 0s;    height: 8px; }
.eq-bar:nth-child(2) { animation-delay: 0.15s; height: 16px; }
.eq-bar:nth-child(3) { animation-delay: 0.3s;  height: 10px; }
.eq-bar:nth-child(4) { animation-delay: 0.1s;  height: 20px; }
.eq-bar:nth-child(5) { animation-delay: 0.25s; height: 14px; }
.equalizer.active .eq-bar { opacity: 1; }
@keyframes eq-bounce {
  0%,100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Player Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.btn-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  box-shadow: 0 0 30px rgba(255,45,107,0.4);
  flex-shrink: 0;
}
.btn-play:hover { transform: scale(1.08); box-shadow: 0 0 50px rgba(255,45,107,0.6); }
.btn-play:active { transform: scale(0.96); }
.btn-play svg { pointer-events: none; }
.btn-play .icon-pause { display: none; }
.btn-play.playing .icon-play { display: none; }
.btn-play.playing .icon-pause { display: block; }

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.volume-icon { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 0 8px var(--accent-glow);
}
.volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

.player-quality {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.quality-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.quality-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
}
.quality-dot.yellow { background: #eab308; box-shadow: 0 0 6px rgba(234,179,8,0.5); }
.quality-value { color: var(--text); font-weight: 600; }

/* Audio Wave SVG Animation */
.audio-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  opacity: 0.12;
}

/* ===== Schedule Section ===== */
#schedule {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.schedule-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.tab-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.tab-btn.active {
  background: rgba(255,45,107,0.15);
  border-color: var(--accent);
  color: var(--accent);
}
.today-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.schedule-grid { display: flex; flex-direction: column; gap: 8px; }
.schedule-show {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: all 0.2s;
}
.schedule-show:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); }
.schedule-show.main-show {
  background: linear-gradient(90deg, rgba(255,45,107,0.12) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(255,45,107,0.4);
  box-shadow: 0 4px 20px rgba(255,45,107,0.12);
  position: relative;
}
.schedule-show.main-show:hover {
  background: linear-gradient(90deg, rgba(255,45,107,0.18) 0%, rgba(124,58,237,0.16) 100%);
  border-color: rgba(255,45,107,0.6);
  box-shadow: 0 6px 25px rgba(255,45,107,0.2);
}
.schedule-show.current {
  background: rgba(255,45,107,0.08);
  border-color: rgba(255,45,107,0.3);
}
.schedule-show.main-show.current {
  background: linear-gradient(90deg, rgba(255,45,107,0.22) 0%, rgba(124,58,237,0.18) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(255,45,107,0.3);
}
.schedule-show.past { opacity: 0.45; }
.show-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.schedule-show.current .show-time { color: var(--accent); }
.schedule-show.main-show .show-time { color: #fff; font-weight: 700; }
.show-info { }
.show-name {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.schedule-show.main-show .show-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.show-host { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.schedule-show.main-show .show-host { color: rgba(255,255,255,0.8); font-weight: 500; }
.main-badge {
  background: linear-gradient(135deg, #ff2d6b, #f59e0b);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(255,45,107,0.4);
  vertical-align: middle;
}
.show-genre {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,45,107,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,45,107,0.2);
}
.schedule-show.main-show .show-genre {
  background: rgba(255,45,107,0.2);
  border-color: rgba(255,45,107,0.4);
  color: #fff;
}
.live-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,45,107,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,45,107,0.3);
}

.coquimbo-badge {
  display: inline-block;
  margin-left: 8px;
  background: linear-gradient(135deg, #facc15, #ca8a04);
  color: #000;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(250,204,21,0.5);
  vertical-align: middle;
}
.schedule-show.coquimbo-show {
  border-color: rgba(250,204,21,0.45);
  background: linear-gradient(90deg, rgba(250,204,21,0.08) 0%, rgba(20,20,30,0.7) 100%);
  box-shadow: 0 4px 20px rgba(250,204,21,0.12);
}
.schedule-show.coquimbo-show .show-time {
  color: #facc15;
  font-weight: 800;
}
.schedule-show.coquimbo-show .show-name {
  color: #fff;
  font-weight: 800;
}
.schedule-show.coquimbo-show .show-genre {
  background: rgba(250,204,21,0.15);
  border-color: rgba(250,204,21,0.4);
  color: #facc15;
}

/* ===== Coquimbo Unido Section & Fixture ===== */
#coquimbo {
  padding: 85px 0;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(250,204,21,0.08) 0%, transparent 65%),
              radial-gradient(circle at 85% 80%, rgba(255,45,107,0.05) 0%, transparent 50%);
  border-top: 1px solid rgba(250,204,21,0.15);
  border-bottom: 1px solid rgba(250,204,21,0.15);
}
.coquimbo-gold-text {
  background: linear-gradient(135deg, #facc15 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(250,204,21,0.4);
}
.nav-coquimbo-link {
  color: #facc15 !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-coquimbo-link:hover {
  text-shadow: 0 0 12px rgba(250,204,21,0.7);
}

/* Match Center Hero Banner */
.coquimbo-hero-match {
  background: linear-gradient(135deg, rgba(20,20,30,0.95), rgba(12,12,18,0.98));
  border: 2px solid rgba(250,204,21,0.35);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 35px rgba(250,204,21,0.12);
  margin-bottom: 40px;
  position: relative;
}
.hero-match-topbar {
  background: linear-gradient(90deg, #ca8a04, #eab308, #ca8a04);
  color: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-match-body {
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.team-shield {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: rgba(0,0,0,0.6);
  border: 3px solid rgba(250,204,21,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.team-shield:hover {
  transform: translateY(-5px) scale(1.08);
}
.team-shield::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.team-shield-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 1;
}
.team-shield-emoji {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
.team-shield-code {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.team-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.team-coquimbo-tag {
  background: rgba(250,204,21,0.18);
  color: #facc15;
  border: 1px solid rgba(250,204,21,0.5);
  box-shadow: 0 0 12px rgba(250,204,21,0.2);
}
.team-rival-tag {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Fixture Mini Badges */
.team-badge-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 32px;
  height: 26px;
  padding: 2px 6px;
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.fixture-card:hover .team-badge-mini {
  transform: scale(1.06);
}
.team-badge-mini::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.team-badge-icon {
  font-size: 0.95rem;
  line-height: 1;
  z-index: 1;
}
.team-badge-code {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.match-center-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
}
.vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(250,204,21,0.15);
  border: 2px solid #facc15;
  color: #facc15;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(250,204,21,0.3);
}
.match-previa-alert {
  background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(245,158,11,0.25));
  border: 1px solid rgba(245,158,11,0.6);
  color: #facc15;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse-border 2s infinite;
}
.match-time-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.match-venue {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-match-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.match-narrators {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.match-narrators strong { color: #fff; }

/* Fixture Grid & Competition Filters */
.competition-filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.comp-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comp-tab:hover {
  background: rgba(250,204,21,0.1);
  border-color: rgba(250,204,21,0.3);
  color: #facc15;
  transform: translateY(-1px);
}
.comp-tab.active {
  background: linear-gradient(135deg, #facc15, #ca8a04);
  color: #000;
  border-color: #facc15;
  box-shadow: 0 4px 15px rgba(250,204,21,0.3);
}
.comp-tab-badge {
  background: rgba(0,0,0,0.25);
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
}
.comp-tab.active .comp-tab-badge {
  background: rgba(0,0,0,0.3);
  color: #fff;
}
.fixture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fixture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.fixture-card.comp-hidden {
  display: none !important;
}
.fixture-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,204,21,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(250,204,21,0.1);
}
.fixture-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
}
.fixture-tournament {
  font-weight: 700;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fixture-tournament[data-comp="copa-libertadores"] {
  color: #38bdf8;
}
.fixture-tournament[data-comp="copa-chile"] {
  color: #f87171;
}
.fixture-tournament[data-comp="copa-liga"] {
  color: #fb923c;
}
.fixture-date {
  color: var(--text-dim);
  font-weight: 600;
}
.fixture-matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fixture-team {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fixture-vs {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dim);
}
.fixture-times {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.fixture-kickoff {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.fixture-kickoff span:last-child {
  color: #fff;
  font-weight: 700;
}
.fixture-previa {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #facc15;
  font-weight: 800;
}
.fixture-stadium {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fixture-card-footer {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.fixture-card-footer .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.75rem;
  justify-content: center;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(245,158,11,0.5); box-shadow: 0 0 10px rgba(245,158,11,0.2); }
  50% { border-color: rgba(239,68,68,0.8); box-shadow: 0 0 18px rgba(239,68,68,0.4); }
}

@media (max-width: 1024px) {
  .fixture-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-match-body { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .fixture-grid { grid-template-columns: 1fr; }
  .team-shield { width: 70px; height: 70px; font-size: 2.2rem; }
}

/* ===== Vistazo TV & Kick Player Section ===== */
#vistazotv {
  padding: 85px 0;
  position: relative;
  background: radial-gradient(circle at 50% 15%, rgba(83,252,24,0.06) 0%, transparent 65%);
}
.kick-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53fc18;
  box-shadow: 0 0 8px #53fc18;
  animation: pulse-dot 1.5s infinite;
}
.nav-tv-link {
  color: #53fc18 !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-tv-link:hover {
  text-shadow: 0 0 12px rgba(83,252,24,0.6);
}
.tv-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.btn-kick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #53fc18;
  color: #07070f;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(83,252,24,0.3);
  text-decoration: none;
}
.btn-kick:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(83,252,24,0.5);
  background: #46db13;
  color: #000;
}
.kick-tag {
  background: #07070f;
  color: #53fc18;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}
.tv-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.tv-player-card {
  background: var(--bg-card);
  border: 1px solid rgba(83,252,24,0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 35px rgba(83,252,24,0.08);
}
.tv-player-topbar {
  background: rgba(0,0,0,0.65);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.tv-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: monospace;
  font-size: 0.78rem;
}
.tv-dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.tv-dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.tv-dot-green { width: 10px; height: 10px; border-radius: 50%; background: #10b981; }
.tv-channel-name { margin-left: 6px; color: var(--text); font-weight: 600; }
.tv-topbar-right { display: flex; align-items: center; gap: 10px; }
.tv-live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(83,252,24,0.15);
  border: 1px solid rgba(83,252,24,0.3);
  color: #53fc18;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tv-quality-pill {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.tv-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}
.tv-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tv-player-footer {
  padding: 18px 22px;
  background: rgba(14,14,26,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.tv-footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tv-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #53fc18, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(83,252,24,0.25);
}
.tv-stream-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.tv-stream-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tv-footer-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tv-card-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
}
.tv-side-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tv-side-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(83,252,24,0.12);
  border: 1px solid rgba(83,252,24,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.tv-side-header h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.tv-side-header span {
  font-size: 0.78rem;
  color: #53fc18;
  font-weight: 600;
}
.tv-side-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.tv-side-text strong {
  color: #fff;
}
.tv-side-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0,0,0,0.3);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
}
.tv-stat-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: #53fc18;
  display: block;
}
.tv-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
  display: block;
}
.tv-highlights h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tv-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tv-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tv-hl-icon {
  font-size: 1rem;
  margin-top: 2px;
}
.tv-highlight-list strong {
  font-size: 0.82rem;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.tv-highlight-list p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .tv-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Shows Section (Redesigned 2-Program Showcase) ===== */
#shows {
  padding: 85px 0;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(255,45,107,0.04) 0%, transparent 70%);
}

.shows-header-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.shows-chile-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.shows-chile-time-badge strong {
  color: #fff;
}

.shows-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-estelar {
  border-color: rgba(255,45,107,0.3);
  background: linear-gradient(155deg, rgba(255,45,107,0.06) 0%, #13141f 60%, rgba(124,58,237,0.06) 100%);
}
.showcase-estelar:hover {
  border-color: rgba(255,45,107,0.6);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,45,107,0.2);
}

.showcase-coquimbo {
  border-color: rgba(250,204,21,0.35);
  background: linear-gradient(155deg, rgba(250,204,21,0.08) 0%, #13141f 60%, rgba(202,138,4,0.06) 100%);
}
.showcase-coquimbo:hover {
  border-color: rgba(250,204,21,0.7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 35px rgba(250,204,21,0.25);
}

.showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.showcase-badge-pill {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}
.badge-estelar {
  background: linear-gradient(135deg, #ff2d6b, #7c3aed);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,45,107,0.35);
}
.badge-coquimbo {
  background: linear-gradient(135deg, #facc15, #ca8a04);
  color: #000;
  box-shadow: 0 2px 12px rgba(250,204,21,0.4);
}

.showcase-time-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.showcase-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
}

.showcase-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.estelar-icon {
  background: linear-gradient(135deg, #ff2d6b, #7c3aed);
}
.coquimbo-icon {
  background: linear-gradient(135deg, #facc15, #ca8a04);
  color: #000;
}

.showcase-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-days {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff2d6b;
  margin-bottom: 4px;
}
.showcase-days.gold-text {
  color: #facc15;
}

.showcase-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.showcase-host {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.showcase-host strong {
  color: #fff;
}

.showcase-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 18px;
}
.showcase-desc strong {
  color: #fff;
}

.showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.sc-feat {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,45,107,0.12);
  border: 1px solid rgba(255,45,107,0.25);
  color: #ff85a6;
  padding: 3px 10px;
  border-radius: 6px;
}
.sc-feat.feat-gold {
  background: rgba(250,204,21,0.12);
  border-color: rgba(250,204,21,0.3);
  color: #facc15;
}

.showcase-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase-dials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dial-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.dial-fm {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.dial-kick {
  background: rgba(83,252,24,0.15);
  color: #53fc18;
  border: 1px solid rgba(83,252,24,0.3);
}
.dial-aurinegro {
  background: rgba(250,204,21,0.15);
  color: #facc15;
  border: 1px solid rgba(250,204,21,0.3);
}
.dial-time {
  background: rgba(0,0,0,0.4);
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .shows-showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-content {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== Podcasts Section ===== */
#podcasts { background: var(--bg-secondary); padding: 80px 0; }
.podcasts-list { display: flex; flex-direction: column; gap: 12px; }
.podcast-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: all 0.2s;
  cursor: pointer;
}
.podcast-item:hover {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.05);
}
.podcast-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-2);
  text-align: center;
  opacity: 0.6;
}
.podcast-info { min-width: 0; }
.podcast-show { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 4px; }
.podcast-title { font-size: 0.95rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.podcast-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.podcast-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.btn-podcast-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--accent-2);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-podcast-play:hover { background: rgba(124,58,237,0.35); transform: scale(1.1); }
.podcast-controls { display: flex; align-items: center; gap: 12px; }

/* ===== News Section ===== */
#news { padding: 80px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.news-card-img-el { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-card-body { padding: 24px; }
.news-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 10px;
}
.news-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.news-card-date { }
.news-read-more { color: var(--accent); font-weight: 500; transition: color 0.2s; }
.news-read-more:hover { color: white; }

/* ===== Footer ===== */
#site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(255,45,107,0.15); border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom span { color: var(--accent); }

/* ===== Sticky Player ===== */
#sticky-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--sticky-h);
  z-index: 950;
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
#sticky-player.visible { transform: translateY(0); }
.sticky-song-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sticky-art {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}
.sticky-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sticky-title { font-size: 0.875rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-artist { font-size: 0.78rem; color: var(--text-muted); }
.sticky-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-btn-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(255,45,107,0.35);
}
.sticky-btn-play:hover { transform: scale(1.08); }
.sticky-btn-play .icon-pause { display: none; }
.sticky-btn-play.playing .icon-play { display: none; }
.sticky-btn-play.playing .icon-pause { display: block; }
.sticky-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.sticky-eq { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.sticky-eq .eq-bar { width: 2px; }
.sticky-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-volume-icon { font-size: 0.9rem; color: var(--text-muted); }
.sticky-volume-slider {
  width: 80px;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.sticky-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.sticky-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Inline Editor ===== */
#editor-fab {
  position: fixed;
  right: 24px;
  bottom: calc(var(--sticky-h) + 16px);
  z-index: 1000;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(13,13,30,0.9);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#editor-fab:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.08); }
#editor-fab.active { background: rgba(255,45,107,0.2); border-color: var(--accent); color: var(--accent); }
#editor-panel {
  position: fixed;
  right: 0;
  top: 70px;
  bottom: var(--sticky-h);
  width: 280px;
  z-index: 990;
  background: rgba(7,7,15,0.97);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#editor-panel.open { transform: translateX(0); }
.editor-panel-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.editor-panel-title { font-size: 0.9rem; font-weight: 700; }
.editor-panel-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 20px; }
.editor-section { }
.editor-section h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.editor-field { margin-bottom: 10px; }
.editor-field label { font-size: 0.78rem; color: var(--text-muted); display: block; margin-bottom: 5px; }
.editor-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.85rem;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.editor-input:focus { border-color: var(--accent); }
.color-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.color-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.color-swatch:hover, .color-swatch.selected { border-color: white; transform: scale(1.1); }
.editor-color-input {
  width: 100%;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  padding: 0 4px;
  background: var(--bg-card);
  cursor: pointer;
}
.editor-panel-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.btn-editor-save {
  width: 100%;
  padding: 10px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-editor-save:hover { opacity: 0.9; }
.btn-editor-reset {
  width: 100%;
  padding: 10px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-editor-reset:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.editor-hint {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  padding: 0 4px;
}
/* Editable element styles (edit mode) */
body.edit-mode [data-editable] {
  outline: 2px dashed rgba(255,45,107,0.4) !important;
  outline-offset: 2px;
  cursor: text !important;
  border-radius: 4px;
  transition: outline-color 0.2s;
}
body.edit-mode [data-editable]:hover {
  outline-color: rgba(255,45,107,0.9) !important;
  background: rgba(255,45,107,0.05) !important;
}
body.edit-mode [data-editable]:focus {
  outline-color: var(--accent) !important;
  background: rgba(255,45,107,0.08) !important;
}
body.edit-mode [data-editable-type="image"] {
  cursor: pointer !important;
  position: relative;
}
body.edit-mode [data-editable-type="image"]::after {
  content: '📷 Cambiar imagen';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
body.edit-mode [data-editable-type="image"]:hover::after { opacity: 1; }
.saved-toast {
  position: fixed;
  bottom: calc(var(--sticky-h) + 80px);
  right: 24px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #22c55e;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.saved-toast.show { opacity: 1; transform: translateY(0); }

/* ===== Particles ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== Buttons / CTAs ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 4px 20px rgba(255,45,107,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,45,107,0.45); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: var(--bg-card); }
.btn-group { display: flex; align-items: center; gap: 12px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .shows-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .shows-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .schedule-show { grid-template-columns: 90px 1fr; }
  .show-genre { display: none; }
  .hero-stats { gap: 20px; }
  #sticky-player { grid-template-columns: 1fr auto; }
  .sticky-right { display: none; }
  #editor-panel { width: 240px; }
}
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .hero-player { padding: 20px; }
  .podcast-item { grid-template-columns: 40px 1fr auto; }
}
