/**
 * Smurfette's Country Delights — premium shell polish
 * Keeps existing image nav, artwork, dividers, and station links.
 * Inspired by Oldies premium chrome, tuned to the country gold palette.
 */

:root {
  --header-h: 64px;
  --footer-h: 96px;
  --nav-w: 268px;
  --sp-panel: rgba(18, 8, 4, 0.72);
  --sp-panel-strong: rgba(22, 10, 5, 0.88);
  --sp-border: rgba(255, 196, 120, 0.42);
  --sp-border-soft: rgba(255, 210, 140, 0.22);
  --sp-text: #f8ead2;
  --sp-muted: rgba(247, 227, 197, 0.78);
  --sp-accent: #ffd28a;
  --sp-accent-hot: #ffb347;
  --sp-glow: rgba(255, 180, 90, 0.35);
  --sp-neon-a: #ffb347;
  --sp-neon-b: #7ec8a3;
  --sp-font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --sp-font-body: "Figtree", "Segoe UI", sans-serif;
}

html.smurf-premium-html {
  scroll-behavior: smooth;
}

body.smurf-premium {
  font-family: var(--sp-font-body);
  color: var(--sp-text);
  background: #0c0603;
  letter-spacing: 0.01em;
}

body.smurf-premium .smurf-skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 10050;
  padding: 10px 14px;
  border-radius: 10px;
  background: #1a0d07;
  color: var(--sp-accent);
  border: 1px solid var(--sp-border);
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s ease;
}
body.smurf-premium .smurf-skip-link:focus {
  top: 12px;
}

/* ===== Premium brand topbar (does not replace image nav) ===== */
body.smurf-premium .site-header {
  height: var(--header-h);
  min-height: var(--header-h);
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 0 calc(var(--nav-w) + 18px);
  background: linear-gradient(180deg, rgba(26, 13, 7, 0.94), rgba(18, 8, 4, 0.88));
  border-bottom: 1px solid var(--sp-border-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 220, 160, 0.08);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  z-index: 9999;
  pointer-events: auto;
}
body.smurf-premium .site-header * {
  display: revert;
}
body.smurf-premium .premium-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sp-text);
  min-width: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}
body.smurf-premium .premium-brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
body.smurf-premium .premium-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 200, 120, 0.35);
  box-shadow: 0 0 18px rgba(255, 160, 70, 0.35);
  background: #1a0d07;
}
body.smurf-premium .premium-brand strong {
  display: block;
  font-family: var(--sp-font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffe0b0;
  text-shadow: 0 0 18px rgba(255, 180, 90, 0.35);
  line-height: 1.15;
}
body.smurf-premium .premium-brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-muted);
}
body.smurf-premium .premium-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
body.smurf-premium .premium-top-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 140, 0.32);
  background: rgba(255, 200, 120, 0.1);
  color: var(--sp-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
body.smurf-premium .premium-top-actions a:hover {
  transform: translateY(-1px);
  background: rgba(255, 200, 120, 0.18);
  box-shadow: 0 0 16px rgba(255, 180, 90, 0.28);
}
body.smurf-premium .premium-top-actions a.primary {
  background: linear-gradient(135deg, #ffb347, #ffcc66);
  color: #3b1b0a;
  border-color: transparent;
}

/* ===== Image side-nav — premium chrome, same icons/links ===== */
body.smurf-premium .side-nav {
  top: var(--header-h);
  bottom: 0;
  width: var(--nav-w);
  background:
    linear-gradient(180deg, rgba(28, 14, 8, 0.96), rgba(14, 7, 4, 0.96));
  border-right: 1px solid var(--sp-border-soft);
  border-radius: 0 18px 18px 0;
  box-shadow:
    10px 0 34px rgba(0, 0, 0, 0.4),
    inset 0 0 28px rgba(255, 180, 90, 0.04);
  overflow-y: auto;
  overflow-x: hidden;
}
body.smurf-premium .side-nav::before,
body.smurf-premium .side-nav::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.85;
}
body.smurf-premium .side-nav::before {
  left: 0;
  background: var(--sp-neon-a);
  box-shadow: 0 0 12px var(--sp-neon-a), 0 0 24px rgba(255, 179, 71, 0.45);
}
body.smurf-premium .side-nav::after {
  right: 0;
  background: var(--sp-neon-b);
  box-shadow: 0 0 12px var(--sp-neon-b), 0 0 22px rgba(126, 200, 163, 0.35);
}
body.smurf-premium .nav-list {
  padding: 18px 14px 36px;
}
body.smurf-premium .nav-list li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(194, 138, 74, 0.28);
}
body.smurf-premium .side-nav a {
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--sp-text);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
body.smurf-premium .side-nav a:hover {
  background: rgba(255, 210, 140, 0.1);
  border-color: rgba(255, 200, 120, 0.22);
  box-shadow: 0 0 18px rgba(255, 170, 80, 0.12);
  transform: translateX(4px);
}
body.smurf-premium .side-nav img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 180, 90, 0.18));
  transition: transform 0.2s ease, filter 0.2s ease;
}
body.smurf-premium .side-nav a:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255, 180, 90, 0.35));
}
body.smurf-premium .side-nav span {
  font-family: var(--sp-font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
body.smurf-premium .mobile-nav-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 140, 0.35);
  background: rgba(26, 13, 7, 0.94);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4), 0 0 14px rgba(255, 180, 90, 0.18);
  font-family: var(--sp-font-body);
}

/* ===== Content / cards ===== */
body.smurf-premium .content-area {
  margin-left: var(--nav-w);
  padding-top: calc(var(--header-h) + 22px);
  padding-bottom: 48px;
}
body.smurf-premium .content-area::before {
  top: var(--header-h);
  bottom: 0;
  left: var(--nav-w);
  opacity: 0.7;
  background-size: cover;
  background-position: center center;
}
body.smurf-premium .content-area::after {
  top: var(--header-h);
  bottom: 0;
  left: var(--nav-w);
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 180, 90, 0.08), transparent 42%),
    radial-gradient(circle at 20% 70%, rgba(126, 200, 163, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}
body.smurf-premium .content-wrapper {
  max-width: 1120px;
}
body.smurf-premium .content-card,
body.smurf-premium .schedule-box,
body.smurf-premium .clock-box,
body.smurf-premium .admin-card {
  background: var(--sp-panel);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 24px rgba(255, 180, 90, 0.12);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.smurf-premium .content-card:hover,
body.smurf-premium .schedule-box:hover {
  border-color: rgba(255, 200, 120, 0.55);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 180, 90, 0.18);
}
body.smurf-premium h1,
body.smurf-premium h2,
body.smurf-premium h3,
body.smurf-premium .hero-title {
  font-family: var(--sp-font-display);
  letter-spacing: 0.02em;
}
body.smurf-premium .hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #ffe7c2;
  text-shadow:
    0 0 22px rgba(255, 180, 90, 0.35),
    0 2px 18px rgba(0, 0, 0, 0.45);
  animation: smurfHeroIn 0.7s ease both;
}
body.smurf-premium .hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--sp-muted);
  letter-spacing: 0.06em;
  animation: smurfHeroIn 0.85s ease both;
}
body.smurf-premium .hero-card .hero-action-row,
body.smurf-premium .hero-card .listen-anywhere {
  animation: smurfHeroIn 1s ease both;
}
@keyframes smurfHeroIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

body.smurf-premium .button,
body.smurf-premium .play-btn,
body.smurf-premium .admin-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 160, 0.3);
  background: rgba(255, 210, 140, 0.12);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
body.smurf-premium .button:hover,
body.smurf-premium .play-btn:hover,
body.smurf-premium .admin-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 210, 140, 0.2);
  box-shadow: 0 0 18px rgba(255, 180, 90, 0.28);
}
body.smurf-premium .smurf-divider {
  filter: drop-shadow(0 0 12px rgba(255, 170, 80, 0.25));
  opacity: 0.98;
}

/* ===== Footer ===== */
body.smurf-premium .site-footer {
  height: var(--footer-h);
  background: linear-gradient(0deg, rgba(18, 8, 4, 0.98), rgba(26, 13, 7, 0.94));
  border-top: 1px solid var(--sp-border);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 180, 90, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.smurf-premium .footer-inner {
  color: var(--sp-text);
}
body.smurf-premium .footer-links a {
  transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
}
body.smurf-premium .footer-links a:hover {
  color: #ffe0b0;
  text-shadow: 0 0 12px rgba(255, 180, 90, 0.55);
  transform: translateX(2px);
}

body.smurf-premium .smurf-back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10020;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 140, 0.35);
  background: rgba(26, 13, 7, 0.92);
  color: var(--sp-accent);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
  font-size: 1.1rem;
  line-height: 1;
}
body.smurf-premium .smurf-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.smurf-premium .smurf-back-top:hover {
  box-shadow: 0 0 18px rgba(255, 180, 90, 0.35);
}

/* ===== Responsive: keep image nav behavior ===== */
@media (max-width: 1100px) {
  :root {
    --header-h: 58px;
  }
  body.smurf-premium .site-header {
    padding: 0 14px 0 72px;
  }
  body.smurf-premium .premium-brand small {
    display: none;
  }
  body.smurf-premium .premium-top-actions a:not(.primary) {
    display: none;
  }
  body.smurf-premium .side-nav {
    top: 0;
    bottom: 0;
    border-radius: 0 16px 16px 0;
  }
  body.smurf-premium .content-area {
    margin-left: 0;
    padding-top: calc(var(--header-h) + 18px);
  }
  body.smurf-premium .content-area::before,
  body.smurf-premium .content-area::after {
    left: 0;
  }
}

@media (max-width: 600px) {
  body.smurf-premium .premium-brand strong {
    font-size: 0.92rem;
  }
  body.smurf-premium .premium-brand img {
    width: 38px;
    height: 38px;
  }
  body.smurf-premium .side-nav img {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.smurf-premium .hero-title,
  body.smurf-premium .hero-tagline,
  body.smurf-premium .hero-card .hero-action-row,
  body.smurf-premium .hero-card .listen-anywhere {
    animation: none;
  }
  body.smurf-premium .smurf-divider {
    animation: none;
  }
  .np-vinyl,
  .sidebar-mini-wave span,
  .premium-eq .eq-bar {
    animation: none !important;
  }
}

/* ========== Premium Plus (items 1–10) ========== */

.smurf-scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0;
  z-index:10060;
  background:linear-gradient(90deg,#ffb347,#7ec8a3,#ffd28a);
  box-shadow:0 0 12px rgba(255,180,90,.45);
  pointer-events:none;
}

/* Hero */
.premium-hero{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,196,120,.35);
  padding:clamp(28px,5vw,54px) clamp(18px,4vw,40px);
  text-align:center;
  background:
    linear-gradient(160deg, rgba(18,8,4,.55), rgba(8,4,2,.72)),
    rgba(14,7,4,.35);
  box-shadow:0 18px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(6px);
}
.premium-hero__glow{
  position:absolute; inset:-20%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,180,90,.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(126,200,163,.1), transparent 40%);
  pointer-events:none;
}
.premium-hero__body{ position:relative; z-index:1; }
.premium-hero__pills{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:14px;
}
.onair-pill,.era-pill,.live-pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 12px; border-radius:999px; font-size:.78rem; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase;
}
.onair-pill{
  border:1px solid rgba(255,100,90,.45);
  background:rgba(180,40,30,.35); color:#ffd0c8;
  box-shadow:0 0 16px rgba(255,80,60,.25);
  animation:smurfPulse 2.2s ease-in-out infinite;
}
.onair-pill--auto{
  border-color:rgba(255,200,120,.35);
  background:rgba(255,180,90,.12); color:#ffe0b0;
  box-shadow:none; animation:none;
}
.era-pill{
  border:1px solid rgba(255,210,140,.28);
  background:rgba(0,0,0,.28); color:#f7e3c5;
}
.hero-onair{
  margin:10px 0 18px; font-size:1.05rem; color:rgba(247,227,197,.9);
}
.hero-onair__label{
  display:inline-block; margin-right:8px; opacity:.7; letter-spacing:.06em; text-transform:uppercase; font-size:.78rem;
}
.hero-onair__name{ font-family:var(--sp-font-display); font-weight:700; color:#ffe7c2; }
.hero-action-row{
  display:flex; gap:12px; justify-content:center; align-items:center; flex-wrap:wrap; margin-bottom:18px;
}
.premium-play{
  background:linear-gradient(135deg,#ffb347,#ffcc66)!important;
  color:#3b1b0a!important; border:none!important; font-weight:900!important;
  padding:12px 22px!important; box-shadow:0 0 22px rgba(255,180,90,.35)!important;
}
.listen-anywhere__label{
  font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; opacity:.75; margin-bottom:10px;
}
.listen-chips{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
}
.listen-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,210,140,.28);
  background:rgba(0,0,0,.28);
  color:#f7e3c5; text-decoration:none; font-weight:700; font-size:.88rem;
  transition:transform .15s ease, box-shadow .15s ease;
}
.listen-chip img{ width:28px; height:28px; border-radius:8px; object-fit:cover; }
.listen-chip:hover{ transform:translateY(-2px); box-shadow:0 0 16px rgba(255,180,90,.25); }
.listen-chip--red{ border-color:rgba(255,120,120,.35); }
.listen-chip--blue{ border-color:rgba(120,180,255,.35); }
.listen-chip--green{ border-color:rgba(120,220,160,.35); }
.listen-chip--pink{ border-color:rgba(255,140,200,.35); }
.listen-chip--gold{ border-color:rgba(255,200,120,.45); }
.listen-chip--compact{ padding:6px 10px; font-size:.8rem; }
.listen-chip--compact img{ width:18px; height:18px; }

@keyframes smurfPulse{
  0%,100%{ box-shadow:0 0 10px rgba(255,80,60,.2); }
  50%{ box-shadow:0 0 22px rgba(255,80,60,.45); }
}

/* Title badges */
.title-icon-badge{
  display:inline-flex; align-items:center; gap:10px; justify-content:center;
  margin:0 0 14px;
}
.title-icon-badge__glass{
  width:38px; height:38px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,210,140,.1);
  border:1px solid rgba(255,210,140,.28);
  box-shadow:inset 0 0 12px rgba(255,180,90,.08);
}
.title-icon-badge__text{
  font-family:var(--sp-font-display);
  letter-spacing:.02em;
}

/* Now playing vinyl card */
.np-section{ text-align:center; }
.np-card{
  display:flex; align-items:center; justify-content:center; gap:22px; flex-wrap:wrap;
  text-align:left; margin-top:8px;
}
.np-vinyl{
  width:132px; height:132px; border-radius:50%;
  background:radial-gradient(circle at center,#1a0d07 18%,#2a140a 19%,#111 42%,#000 43%,#222 70%,#111 71%);
  display:grid; place-items:center;
  box-shadow:0 0 0 4px rgba(255,200,120,.18), 0 12px 28px rgba(0,0,0,.45);
  animation:smurfSpin 18s linear infinite;
}
.np-vinyl--fallback{ animation-duration:28s; }
.np-art{
  width:78px; height:78px; border-radius:50%; object-fit:cover;
  border:2px solid rgba(255,220,160,.35);
}
.np-meta{ min-width:220px; max-width:420px; }
.np-eyebrow{
  display:block; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; opacity:.7; margin-bottom:6px;
}
.np-title{
  display:block; font-family:var(--sp-font-display); font-size:clamp(1.15rem,2.4vw,1.55rem);
  color:#ffe7c2; line-height:1.25;
}
.np-artist{ display:block; margin-top:6px; color:rgba(247,227,197,.82); }
@keyframes smurfSpin{ to{ transform:rotate(360deg); } }

.premium-clock-flex .clock-digits{
  display:block; margin-top:8px;
  font-family:var(--sp-font-display); font-size:1.8rem; color:#ffe0b0;
  letter-spacing:.04em;
}
.hero-station-date{ margin-top:14px; opacity:.75; font-size:.92rem; }

/* Schedule strip */
.schedule-strip{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px;
}
.show-card{
  background:rgba(18,8,4,.72);
  border:1px solid rgba(255,196,120,.35);
  border-radius:18px; padding:18px 16px;
  box-shadow:0 12px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .2s ease, border-color .2s ease;
}
.show-card:hover{ transform:translateY(-2px); border-color:rgba(255,200,120,.55); }
.show-card--live{ border-color:rgba(255,120,90,.45); box-shadow:0 0 24px rgba(255,100,70,.12); }
.show-card__eyebrow{ display:flex; justify-content:space-between; align-items:center; gap:8px; margin-bottom:8px; }
.show-card__label{ font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; opacity:.75; }
.show-card__show{ margin:0; font-family:var(--sp-font-display); font-size:1.2rem; color:#ffe7c2; }
.show-card__time{ margin:8px 0 0; opacity:.8; }
.live-pill--live{ background:rgba(180,40,30,.35); border:1px solid rgba(255,100,90,.4); color:#ffd0c8; padding:3px 8px; border-radius:999px; font-size:.7rem; font-weight:800; }
.live-pill--autodj{ background:rgba(255,180,90,.12); border:1px solid rgba(255,200,120,.3); color:#ffe0b0; padding:3px 8px; border-radius:999px; font-size:.7rem; font-weight:800; }
.schedule-strip-foot{ text-align:center; margin-top:16px; }

@media (max-width:900px){
  .schedule-strip{ grid-template-columns:1fr; }
}

/* Sidebar mini player */
.side-nav{
  display:flex; flex-direction:column;
}
.side-nav .nav-list{ flex:1 1 auto; }
.sidebar-mini-player{
  margin:8px 10px 14px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,200,120,.28);
  background:rgba(0,0,0,.35);
  display:grid;
  grid-template-columns:40px 1fr auto;
  grid-template-rows:auto auto;
  gap:6px 8px;
  align-items:center;
}
.sidebar-mini-art img{
  width:40px!important; height:40px; border-radius:10px; object-fit:cover;
  border:1px solid rgba(255,210,140,.3);
}
.sidebar-mini-meta{ min-width:0; grid-column:2; }
.sidebar-mini-eyebrow{
  display:block; font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; color:#7ec8a3; font-weight:800;
}
.sidebar-mini-title{
  display:block; font-size:.78rem; color:#f7e3c5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:140px;
}
.sidebar-mini-wave{
  grid-column:1 / 3; display:flex; gap:3px; align-items:flex-end; height:14px; padding-left:2px;
}
.sidebar-mini-wave span{
  width:3px; background:#ffb347; border-radius:2px; opacity:.8;
  animation:smurfEq 1s ease-in-out infinite;
}
.sidebar-mini-wave span:nth-child(1){ height:6px; animation-delay:0s; }
.sidebar-mini-wave span:nth-child(2){ height:12px; animation-delay:.1s; }
.sidebar-mini-wave span:nth-child(3){ height:8px; animation-delay:.2s; }
.sidebar-mini-wave span:nth-child(4){ height:14px; animation-delay:.05s; }
.sidebar-mini-wave span:nth-child(5){ height:7px; animation-delay:.15s; }
.sidebar-mini-play{
  grid-row:1 / 3; grid-column:3;
  width:34px; height:34px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#ffb347,#ffcc66); color:#3b1b0a;
  text-decoration:none; font-weight:900; box-shadow:0 0 14px rgba(255,180,90,.3);
}
@keyframes smurfEq{
  0%,100%{ transform:scaleY(.55); }
  50%{ transform:scaleY(1); }
}

/* Footer multi-column */
body.smurf-premium .site-footer.premium-footer{
  height:auto; min-height:0;
  position:relative;
  padding:18px 0 22px;
  margin-left: var(--nav-w);
  width: auto;
  box-sizing: border-box;
}
.footer-grid{
  max-width:1400px; margin:0 auto; padding:0 24px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:22px;
  color:#f7e3c5;
}
.footer-brand-row{ display:flex; gap:12px; align-items:center; margin-bottom:10px; }
.footer-brand-row img{ width:42px; height:42px; border-radius:12px; border:1px solid rgba(255,210,140,.3); }
.footer-brand-row strong{ display:block; font-family:var(--sp-font-display); }
.footer-brand-row span{ display:block; font-size:.78rem; opacity:.75; }
.footer-col h3{
  margin:0 0 10px; font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:#ffd28a;
}
.footer-col--links a,
.footer-col--listen a{
  display:block; color:#f7e3c5; text-decoration:none; opacity:.88; margin:6px 0;
  transition:transform .15s ease, color .15s ease, text-shadow .15s ease;
}
.footer-col--links a:hover,
.footer-col--listen a:hover{
  color:#ffe0b0; transform:translateX(3px); text-shadow:0 0 12px rgba(255,180,90,.4);
}
.footer-col--stats p{ margin:6px 0; }
.footer-partners{ display:flex; flex-wrap:wrap; gap:10px 14px; margin-top:12px; }
.footer-partners a{ color:#f7e3c5; text-decoration:none; opacity:.85; }
.footer-copy{ margin-top:12px; font-size:.82rem; opacity:.8; }

@media (max-width:1100px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  body.smurf-premium .site-footer.premium-footer{
    position:relative;
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width:700px){
  .footer-grid{ grid-template-columns:1fr; gap:16px; }
  .np-card{ text-align:center; }
  .np-meta{ text-align:center; }
}

/* Reveal motion */
.reveal-card,
.content-card.reveal-card,
.show-card{
  opacity:0; transform:translateY(14px);
  transition:opacity .45s ease, transform .45s ease;
}
.reveal-card.is-visible,
.content-card.reveal-card.is-visible,
.show-card.is-visible{
  opacity:1; transform:none;
}
.show-cards .show-card{ opacity:0; transform:translateY(14px); }
.show-cards.is-visible .show-card,
.schedule-strip .show-card.is-visible{ opacity:1; transform:none; }
.schedule-strip .show-card:nth-child(2){ transition-delay:.08s; }
.schedule-strip .show-card:nth-child(3){ transition-delay:.16s; }

/* Popout polish */
body.page-player-popout .premium-popout{
  border:1px solid rgba(255,196,120,.4);
  box-shadow:0 20px 60px rgba(0,0,0,.45), 0 0 40px rgba(255,180,90,.12);
}
body.page-player-popout .premium-audio-shell{
  border-radius:16px; padding:12px;
  border:1px solid rgba(255,210,140,.22);
  background:rgba(0,0,0,.28);
}
body.page-player-popout .premium-eq{ margin-top:10px; justify-content:center; }
body.page-player-popout.is-playing .eq-bar{
  animation:smurfEq .9s ease-in-out infinite;
}
body.page-player-popout .site-header,
body.page-player-popout .site-footer,
body.page-player-popout #sideNav,
body.page-player-popout #navOverlay,
body.page-player-popout .smurf-back-top,
body.page-player-popout .smurf-scroll-progress{ display:none!important; }
body.page-player-popout .content-area{ padding-bottom:24px!important; margin-left:0!important; }

@media (prefers-reduced-motion: reduce){
  .reveal-card,.show-card{ opacity:1; transform:none; transition:none; }
}

/* ===== Premium 404 ===== */
.premium-error-404{
  text-align:center;
  padding:48px 28px 56px;
  max-width:720px;
  margin:0 auto;
}
.premium-error-404__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
  color:rgba(247,227,197,.78);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.82rem;
}
.premium-error-404__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,196,120,.45);
  background:rgba(255,180,90,.14);
  color:#ffd28a;
  font-weight:800;
}
.premium-error-404__title{
  margin:0 0 12px;
  font-family:var(--sp-font-display, Fraunces, Georgia, serif);
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  color:#f8ead2;
}
.premium-error-404__lead{
  margin:0 auto 26px;
  max-width:34em;
  color:rgba(247,227,197,.82);
  line-height:1.6;
}
.premium-error-404__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
