/* =============================================
   MusicaCristiana.tv — Dark Neon Purple Theme
   ============================================= */
/* Google Fonts cargadas de forma asíncrona desde el layout */

:root {
  --bg-deep:    #050508;
  --bg-dark:    #09090f;
  --bg-medium:  #0e0e1a;
  --bg-card:    #12122a;
  --bg-card2:   #16162e;
  --purple:     #8b5cf6;
  --purple-bright: #a78bfa;
  --purple-dark:#6d28d9;
  --purple-glow:rgba(139,92,246,.35);
  --pink:       #ec4899;
  --pink-glow:  rgba(236,72,153,.3);
  --cyan:       #22d3ee;
  --cyan-glow:  rgba(34,211,238,.3);
  --gold:       #fbbf24;
  --green:      #10b981;
  --text-white: #f8fafc;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim:   #64748b;
  --border:     rgba(139,92,246,.2);
  --border-bright: rgba(139,92,246,.5);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .2s ease;
  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 90px; /* space for sticky radio */
}
a { color: var(--purple-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink); }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text-white); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { color: var(--text-muted); line-height: 1.75; }

/* ── Neon text ── */
.neon-text {
  background: linear-gradient(135deg, var(--purple-bright), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.neon-cyan { color: var(--cyan); text-shadow: 0 0 12px var(--cyan-glow); }
.neon-purple { color: var(--purple-bright); text-shadow: 0 0 12px var(--purple-glow); }
.neon-pink { color: var(--pink); text-shadow: 0 0 12px var(--pink-glow); }

/* ── Container ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Section ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: .5rem;
}
.section-subtitle { color: var(--text-muted); margin-bottom: 3rem; }
.section-header { margin-bottom: 2.5rem; }
.section-line {
  display: inline-block;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(9,9,15,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem;
}
.navbar-brand { display: flex; align-items: center; gap: .75rem; }
.navbar-brand img { height: 42px; width: auto; }
.navbar-brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--text-white); }
.navbar-nav {
  display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  padding: .5rem .9rem; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(139,92,246,.15);
}
.nav-live {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem; border-radius: 20px;
  background: rgba(236,72,153,.15); border: 1px solid rgba(236,72,153,.3);
  color: var(--pink); font-size: .75rem; font-weight: 700;
  animation: livePulse 2s ease-in-out infinite;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); display: inline-block; }
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(236,72,153,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(236,72,153,0); }
}
.navbar-actions { display: flex; align-items: center; gap: .75rem; }
.lang-switcher {
  display: flex; gap: .25rem;
}
.lang-btn {
  padding: .3rem .6rem; border-radius: 6px; font-size: .75rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted);
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover { background: var(--purple-dark); color: #fff; border-color: var(--purple); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-light); margin: 5px 0; transition: all .3s; border-radius: 1px; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(9,9,15,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 1rem;
  flex-direction: column; gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: .75rem 1rem; border-radius: 8px; color: var(--text-muted); font-weight: 500; }
.mobile-nav-link:hover { background: rgba(139,92,246,.1); color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.5rem; border-radius: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-purple {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff; box-shadow: 0 4px 15px var(--purple-glow);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--purple-glow); color: #fff; }
.btn-pink {
  background: linear-gradient(135deg, #be185d, var(--pink));
  color: #fff; box-shadow: 0 4px 15px var(--pink-glow);
}
.btn-pink:hover { transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent; color: var(--purple-bright);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover { background: rgba(139,92,246,.1); color: var(--text-white); }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; border-radius: 12px; }
.btn-icon { padding: .6rem; border-radius: 8px; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
}
.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139,92,246,.15);
}
.card-body { padding: 1.5rem; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-sm { height: 160px; }
.card-img-lg { height: 250px; }
.card-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-white); }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--purple-bright); }
.card-text { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.card-meta { display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: var(--text-dim); margin-top: 1rem; flex-wrap: wrap; }
.card-meta i { color: var(--purple); }

/* ── Grid ── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── Hero ── */
.hero {
  position: relative; min-height: calc(100vh - 70px);
  display: flex; align-items: center;
  margin-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109,40,217,.4) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 80%, rgba(236,72,153,.15) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 60%, rgba(34,211,238,.1) 0%, transparent 50%),
              var(--bg-deep);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: float linear infinite;
  opacity: .4;
}
@keyframes float {
  0%   { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .4; }
  90%  { opacity: .2; }
  100% { transform: translateY(-100px) translateX(50px) rotate(360deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 4rem 1.25rem; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 20px; margin-bottom: 1.5rem;
  background: rgba(139,92,246,.15); border: 1px solid var(--border-bright);
  font-size: .8rem; font-weight: 600; color: var(--purple-bright); letter-spacing: .05em; text-transform: uppercase;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Promesa Card ── */
.promesa-card {
  background: linear-gradient(135deg, rgba(109,40,217,.2), rgba(139,92,246,.1));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.promesa-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent, rgba(139,92,246,.03), transparent 30%);
  animation: rotate 8s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.promesa-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text-white);
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  font-family: Georgia, serif;
}
.promesa-text::before { content: '\201C'; font-size: 3rem; color: var(--purple); line-height: 0; vertical-align: -.5rem; margin-right: .25rem; }
.promesa-ref {
  color: var(--purple-bright); font-weight: 700;
  font-family: var(--font-head); font-size: .9rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.promesa-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ── Radio Player (Sticky) ── */
.radio-player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(9,9,15,.96);
  backdrop-filter: blur(30px);
  border-top: 1px solid var(--border-bright);
  height: 80px;
  display: flex; align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}
.radio-player-logo { flex-shrink: 0; }
.radio-player-logo img { height: 38px; width: auto; border-radius: 6px; }
.radio-track-info { flex: 1; min-width: 0; }
.radio-track-name {
  font-weight: 700; font-size: .9rem; color: var(--text-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: var(--font-head);
}
.radio-track-sub { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.radio-controls { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.radio-play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; transition: all .2s;
  box-shadow: 0 4px 15px var(--purple-glow);
  flex-shrink: 0;
}
.radio-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px var(--purple-glow); }
.radio-play-btn:disabled { cursor: not-allowed; opacity: .85; transform: none; }
.radio-play-btn.loading {
  animation: pulse-ring 1s ease-in-out infinite;
}
.radio-play-btn.loading i {
  animation: spin 1s linear infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,.6), 0 4px 15px var(--purple-glow); }
  50%       { box-shadow: 0 0 0 8px rgba(139,92,246,0), 0 4px 15px var(--purple-glow); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.radio-volume { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.radio-volume i { color: var(--text-muted); font-size: .85rem; }
.radio-vol-slider {
  -webkit-appearance: none; width: 80px; height: 4px;
  background: var(--bg-card2); border-radius: 2px; cursor: pointer;
}
.radio-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--purple-bright); cursor: pointer;
}
.radio-badge-live {
  display: flex; align-items: center; gap: .4rem; flex-shrink: 0;
  padding: .3rem .8rem; border-radius: 20px;
  background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.3);
  font-size: .7rem; font-weight: 700; color: var(--cyan); letter-spacing: .1em;
}
.radio-badge-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: livePulse 1.5s infinite; }

/* ── Radio Page ── */
.radio-page-player {
  background: linear-gradient(135deg, rgba(109,40,217,.25), rgba(139,92,246,.1));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center;
  max-width: 600px; margin: 0 auto 3rem;
}
.radio-big-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem; transition: all .3s;
  box-shadow: 0 8px 30px var(--purple-glow);
  margin: 1.5rem 0;
}
.radio-big-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px var(--purple-glow); }
.radio-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.radio-stat { text-align: center; }
.radio-stat-value { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--purple-bright); }
.radio-stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ── Badges / Tags ── */
.badge {
  display: inline-flex; align-items: center;
  padding: .25rem .65rem; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.badge-purple { background: rgba(139,92,246,.15); color: var(--purple-bright); border: 1px solid rgba(139,92,246,.3); }
.badge-pink   { background: rgba(236,72,153,.15); color: var(--pink); border: 1px solid rgba(236,72,153,.3); }
.badge-cyan   { background: rgba(34,211,238,.15); color: var(--cyan); border: 1px solid rgba(34,211,238,.3); }
.badge-gold   { background: rgba(251,191,36,.15); color: var(--gold); border: 1px solid rgba(251,191,36,.3); }
.badge-green  { background: rgba(16,185,129,.15); color: var(--green); border: 1px solid rgba(16,185,129,.3); }

/* ── Category badges ── */
.cat-fe          { background: rgba(139,92,246,.15); color: var(--purple-bright); }
.cat-musica      { background: rgba(236,72,153,.15); color: var(--pink); }
.cat-ministerios { background: rgba(34,211,238,.15); color: var(--cyan); }
.cat-eventos     { background: rgba(251,191,36,.15); color: var(--gold); }
.cat-familia     { background: rgba(16,185,129,.15); color: var(--green); }

/* ── Pagination ── */
.pagination { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.page-link {
  padding: .5rem .9rem; border-radius: 8px; font-size: .875rem; font-weight: 500;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); transition: all .2s;
}
.page-link:hover, .page-link.active {
  background: var(--purple-dark); border-color: var(--purple); color: #fff;
}
.page-link.disabled { opacity: .4; pointer-events: none; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-light); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .7rem 1rem; border-radius: 8px;
  background: var(--bg-card2); border: 1px solid var(--border);
  color: var(--text-white); font-size: .9rem; transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-glow); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-check { display: flex; align-items: center; gap: .5rem; }
.form-check input[type="checkbox"] { accent-color: var(--purple); width: 16px; height: 16px; cursor: pointer; }
.form-error { color: #f87171; font-size: .8rem; margin-top: .3rem; }
.search-box {
  display: flex; gap: .5rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: .4rem .5rem; align-items: center;
}
.search-box input {
  background: none; border: none; color: var(--text-white); padding: .3rem .5rem;
  font-size: .9rem; flex: 1; outline: none;
}
.search-box button {
  padding: .5rem .9rem; border-radius: 8px;
  background: var(--purple-dark); border: none; color: #fff; cursor: pointer;
}

/* ── Lyrics ── */
.letra-content {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem; line-height: 2.2;
  color: var(--text-light);
  white-space: pre-wrap;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.artist-card {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .3s;
}
.artist-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 8px 25px var(--purple-glow); }
.artist-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; font-weight: 800;
  font-family: var(--font-head); overflow: hidden;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-name { font-weight: 700; color: var(--text-white); margin-bottom: .3rem; }
.artist-meta { font-size: .8rem; color: var(--text-muted); }

/* ── News Card ── */
.news-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 4rem;
}
.news-featured .news-main { grid-column: 1; grid-row: 1 / 3; }
.news-featured .news-side { }
.news-featured-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.news-article h1 { margin-bottom: 1.5rem; }
.news-article p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.news-article h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--text-white); }
.news-article h3 { font-size: 1.2rem; margin: 1.5rem 0 .75rem; color: var(--purple-bright); }

/* ── Sidebar ── */
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-title { font-size: .9rem; font-weight: 700; color: var(--purple-bright); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.sidebar-list { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-item { display: flex; gap: .75rem; align-items: flex-start; }
.sidebar-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sidebar-item-title { font-size: .85rem; font-weight: 600; color: var(--text-light); line-height: 1.4; }
.sidebar-item-meta { font-size: .75rem; color: var(--text-dim); margin-top: .2rem; }

/* ── Stats boxes ── */
.stat-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; text-align: center;
}
.stat-number { font-size: 2.5rem; font-weight: 900; font-family: var(--font-head); color: var(--purple-bright); }
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }

/* ── Alerts ── */
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #6ee7b7; }
.alert-error   { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.alert-info    { background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.3); color: var(--purple-bright); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .8rem; color: var(--text-dim); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb-item { color: var(--text-dim); }
.breadcrumb-item a { color: var(--purple-bright); }
.breadcrumb-sep { opacity: .4; }

/* ── Footer ── */
.footer {
  background: var(--bg-medium);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; transition: all .2s;
}
.social-btn:hover { background: rgba(139,92,246,.2); border-color: var(--purple); color: var(--purple-bright); }
.footer-col-title { font-size: .85rem; font-weight: 700; color: var(--text-white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--purple-bright); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .8rem; color: var(--text-dim); }
.footer-copy span { color: var(--purple); }

/* ── Page header ── */
.page-header {
  background: linear-gradient(180deg, rgba(109,40,217,.15) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
  margin-top: 70px;
}
.page-header .container { }
.page-header-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--text-white); }
.page-header-sub { color: var(--text-muted); margin-top: .5rem; }

/* ── Divider ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-bright), transparent); margin: 3rem 0; }

/* ── Loading ── */
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--purple); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Glassmorphism ── */
.glass {
  background: rgba(18,18,42,.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── Glow border animation ── */
.glow-border {
  position: relative;
  border-radius: var(--radius);
}
.glow-border::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  border-radius: var(--radius); z-index: -1;
  opacity: 0; transition: opacity .3s;
}
.glow-border:hover::before { opacity: 1; }

/* ── Featured badge ── */
.card-featured { position: relative; }
.featured-ribbon {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  color: #fff; font-size: .65rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 20px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── 404 / empty ── */
.empty-state { text-align: center; padding: 5rem 2rem; }
.empty-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: .4; }
.empty-title { color: var(--text-muted); font-size: 1.2rem; margin-bottom: .5rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-main { grid-row: auto; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: block; }
  .radio-volume { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .radio-track-info .radio-track-sub { display: none; }
  .radio-badge-live span { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .page-header { padding: 2rem 0 1.5rem; }
  body { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .radio-player { padding: 0 1rem; gap: .75rem; }
  .radio-badge-live { display: none; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hidden { display: none; }
