/* ============================================
   The Dogmother — Howling Moon Music
   WARM LIGHT THEME + HOT PINK ACCENTS
   Premium Celebrity Site — Gen X Vibes
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #faf6f0;
  --bg2: #f0ebe3;
  --bg3: #fff;
  --bg4: #e8e2d8;
  --gold: #b8922f;
  --gold-l: #d4ae48;
  --gold-d: #8a6e22;
  --red: #8b1a1a;
  --red-b: #c62828;
  --pink: #ff2d7b;
  --pink-l: #ff5a9e;
  --pink-d: #d4175f;
  --pink-glow: rgba(255,45,123,.15);
  --pink-glow-s: rgba(255,45,123,.25);
  --cream: #faf6f0;
  --tp: #2c2418;
  --ts: #5c4f3f;
  --tm: #8a7e70;
  --border: #e0d8cc;
  --border-g: rgba(184,146,47,.2);
  --border-p: rgba(255,45,123,.2);
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--tp);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold-d); text-decoration: none; transition: color .3s; }
a:hover { color: var(--pink); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.5rem,6vw,4.5rem); color: var(--tp); }
h2 { font-size: clamp(1.8rem,4vw,3rem); color: var(--tp); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); color: var(--gold-d); }
p { color: var(--ts); max-width: 700px; font-size: 1.05rem; }

/* --- Preloader --- */
.preloader {
  position: fixed; inset: 0; background: #1a1410; z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 1s ease, visibility 1s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader img { width: 180px; animation: pulse 2s ease-in-out infinite; }
.preloader p { color: var(--pink-l); font-family: var(--font-d); margin-top: 1rem; font-size: .9rem; letter-spacing: 4px; text-transform: uppercase; }
@keyframes pulse {
  0%,100% { opacity: .5; transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50% { opacity: 1; transform: scale(1.03); filter: drop-shadow(0 0 30px rgba(255,45,123,.4)); }
}

/* --- Nav --- */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.nav.scrolled { background: rgba(250,246,240,.97); border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo img { height: 42px; }
.nav__logo span { font-family: var(--font-d); font-size: 1.2rem; color: var(--tp); letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a {
  color: var(--ts); font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: color .3s;
}
.nav__links a:hover, .nav__links a.active { color: var(--pink); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--tp); margin: 5px 0; transition: .3s; }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0; background: rgba(26,20,16,.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-nav.open { display: flex; }
.mob-nav a { color: var(--cream); font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-d); }
.mob-nav a:hover { color: var(--pink); }
.mob-nav .close-btn {
  background: none; border: 1px solid var(--pink); color: var(--pink);
  padding: .5rem 1.5rem; border-radius: 50px; cursor: pointer; margin-top: 1rem;
  font-family: var(--font-b); font-size: .85rem;
}

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--alt { background: var(--bg2); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* --- Hero with B&W Photo Montage --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: #1a1410;
}
.hero__montage {
  position: absolute; inset: 0;
}
.hero__montage img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0; transition: opacity .15s ease-in-out;
  filter: grayscale(100%) contrast(1.15);
}
.hero__montage img.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,.25) 0%, rgba(26,20,16,.1) 30%, rgba(26,20,16,.5) 70%, rgba(26,20,16,.92) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center; padding: 2rem;
}
.hero__content h1 {
  font-weight: 900; letter-spacing: 8px; line-height: 1.05; color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,.3), 0 0 60px rgba(255,45,123,.4), 2px 4px 30px rgba(0,0,0,.8);
  -webkit-text-stroke: 0.5px rgba(255,255,255,.2);
}
.hero__tagline {
  font-size: clamp(1.3rem,3vw,1.8rem); color: var(--pink-l); margin-top: .8rem;
  font-style: italic; letter-spacing: 5px; font-weight: 700;
  text-shadow: 0 0 15px rgba(255,45,123,.6), 0 0 40px rgba(255,45,123,.3), 0 0 80px rgba(255,45,123,.15), 1px 2px 8px rgba(0,0,0,.6);
}
.hero__signature-wrap {
  display: inline-flex; align-items: flex-end; gap: 0.3rem;
  transform: rotate(-5deg); margin-top: 1rem;
  position: relative;
}
.hero__signature {
  font-family: 'Dancing Script', 'Pacifico', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700;
  color: var(--gold-l);
  display: inline-block;
  text-shadow: 0 0 20px rgba(212,174,72,.7), 0 0 50px rgba(212,174,72,.4), 0 0 80px rgba(212,174,72,.2), 1px 2px 8px rgba(0,0,0,.6);
  letter-spacing: 2px;
  filter: brightness(1.2);
  animation: signatureGlow 3s ease-in-out infinite alternate;
  position: relative;
  background: linear-gradient(90deg, var(--gold-l) 0%, #fff 15%, var(--gold-l) 30%, #f5d990 50%, var(--gold-l) 70%, #fff 85%, var(--gold-l) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: signatureGlow 3s ease-in-out infinite alternate, signatureShimmer 4s linear infinite;
}
.hero__sparkles {
  position: absolute; inset: -10px; pointer-events: none; overflow: visible;
}
.hero__sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 6px 2px rgba(212,174,72,.8), 0 0 12px 4px rgba(255,255,255,.3);
}
.hero__lip-print {
  width: clamp(28px, 3.5vw, 44px); height: auto;
  margin-bottom: 0.15em; margin-left: -0.1em;
  filter: drop-shadow(0 0 8px rgba(255,45,123,.6)) drop-shadow(0 0 20px rgba(255,45,123,.3));
  animation: lipGlow 3s ease-in-out infinite alternate;
}
@keyframes signatureGlow {
  0% { filter: brightness(1.15); }
  100% { filter: brightness(1.35); }
}
@keyframes signatureShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes lipGlow {
  0% { filter: drop-shadow(0 0 6px rgba(255,45,123,.5)) drop-shadow(0 0 15px rgba(255,45,123,.2)); }
  100% { filter: drop-shadow(0 0 12px rgba(255,45,123,.8)) drop-shadow(0 0 25px rgba(255,45,123,.4)); }
}
.hero__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 2rem; padding: .9rem 2.5rem;
  background: linear-gradient(135deg, var(--pink-d), var(--pink));
  color: #fff; border-radius: 50px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .82rem;
  transition: transform .3s, box-shadow .3s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,45,123,.3);
}
.hero__cta:hover {
  transform: scale(1.05); box-shadow: 0 8px 40px rgba(255,45,123,.45); color: #fff;
}

/* --- Section Header --- */
.sec-title { margin-bottom: .4rem; }
.sec-sub { color: var(--gold-d); font-style: italic; font-size: .95rem; letter-spacing: 1px; margin-bottom: 2.5rem; }
.divider { width: 60px; height: 2px; background: linear-gradient(to right, transparent, var(--pink), transparent); margin: 2rem auto; }

/* --- Radio Station --- */
.radio-section {
  background: linear-gradient(135deg, #1a1410 0%, #2a1f18 100%);
  padding: 2.5rem 2rem; text-align: center;
  border-bottom: 2px solid var(--pink);
  position: relative; overflow: hidden;
}
.radio-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,45,123,.08) 0%, transparent 70%);
}
.radio-section * { position: relative; }
.radio-title {
  font-family: var(--font-d); font-size: clamp(1.2rem,3vw,1.8rem);
  color: #fff; letter-spacing: 3px; margin-bottom: .3rem;
}
.radio-sub { color: var(--pink-l); font-size: .85rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
.radio-player {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,45,123,.3);
  border-radius: 50px; padding: .6rem 1.5rem .6rem .6rem;
  backdrop-filter: blur(10px);
}
.radio-play-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pink-d), var(--pink));
  color: #fff; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 0 20px rgba(255,45,123,.4);
}
.radio-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(255,45,123,.6); }
.radio-now-playing { color: #fff; font-size: .85rem; text-align: left; }
.radio-now-playing span { display: block; color: var(--pink-l); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; }
.radio-eq {
  display: flex; align-items: flex-end; gap: 2px; height: 20px;
}
.radio-eq span {
  width: 3px; background: var(--pink); border-radius: 2px;
  animation: eq-bar 1s ease-in-out infinite;
}
.radio-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.radio-eq span:nth-child(2) { height: 14px; animation-delay: .15s; }
.radio-eq span:nth-child(3) { height: 6px; animation-delay: .3s; }
.radio-eq span:nth-child(4) { height: 18px; animation-delay: .1s; }
.radio-eq span:nth-child(5) { height: 10px; animation-delay: .25s; }
@keyframes eq-bar {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(.3); }
}
.radio-eq.paused span { animation-play-state: paused; }

/* Radio controls & extras */
.radio-controls { max-width: 600px; margin: 0 auto; }
.radio-btns {
  display: flex; justify-content: center; gap: .6rem; margin-top: .8rem;
}
.radio-skip-btn {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,45,123,.25);
  color: #fff; border-radius: 50px; padding: .4rem 1rem; cursor: pointer;
  font-size: .8rem; transition: all .3s;
}
.radio-skip-btn:hover { background: rgba(255,45,123,.2); border-color: var(--pink); }
.radio-progress {
  width: 100%; height: 3px; background: rgba(255,255,255,.1);
  border-radius: 3px; margin-top: .8rem; overflow: hidden;
}
.radio-progress-bar {
  height: 100%; width: 0; background: linear-gradient(to right, var(--pink-d), var(--pink));
  border-radius: 3px; transition: width .3s linear;
}
.radio-mode-bar {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; flex-wrap: wrap;
}
.radio-mode {
  background: transparent; border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6); border-radius: 50px; padding: .3rem 1rem;
  font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: all .3s; font-family: var(--font-b);
}
.radio-mode:hover { border-color: var(--pink); color: #fff; }
.radio-mode.active { background: var(--pink); border-color: var(--pink); color: #fff; }

/* Album bar chips */
.radio-album-bar {
  display: flex; justify-content: center; gap: .4rem; margin-top: .6rem; flex-wrap: wrap;
}
.album-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); border-radius: 50px; padding: .2rem .8rem;
  font-size: .62rem; letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  transition: all .3s; font-family: var(--font-b);
}
.album-chip:hover { border-color: var(--gold-l); color: var(--gold-l); }
.album-chip.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* --- Mood Section (under radio) --- */
.mood-section { padding: 4rem 0; }
.mood-count {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-top: .5rem;
}

/* --- Mood Playlist Modal --- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(26,20,16,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: var(--bg); border-radius: 16px; max-width: 700px; width: 100%;
  max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative;
  border: 1px solid var(--border-p);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; }
.modal-header h3 { font-size: 1.5rem; }
.modal-close {
  background: none; border: none; font-size: 2rem; color: var(--tm); cursor: pointer;
  line-height: 1; padding: 0; transition: color .3s;
}
.modal-close:hover { color: var(--pink); }
.modal-sub { color: var(--tm); font-size: .9rem; font-style: italic; margin-bottom: 1.2rem; }
.modal-actions { margin-bottom: 1.5rem; }
.modal-play-all {
  background: linear-gradient(135deg, var(--pink-d), var(--pink));
  color: #fff; border: none; border-radius: 50px; padding: .6rem 2rem;
  font-size: .82rem; font-weight: 600; letter-spacing: 1px; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(255,45,123,.3);
}
.modal-play-all:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,45,123,.4); }
.modal-song-list { list-style: none; }
.modal-song-list li {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
}
.modal-song-list li:last-child { border-bottom: none; }
.modal-song-info { display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 0; }
.modal-song-num { font-family: var(--font-d); color: var(--tm); min-width: 24px; font-size: .9rem; }
.modal-song-title { color: var(--tp); font-size: .9rem; font-weight: 500; }
.modal-song-title:hover { color: var(--pink); }
.modal-song-artist { display: block; font-size: .72rem; color: var(--tm); }

/* --- Song Action Buttons --- */
.song-actions {
  display: flex; gap: .3rem; margin-left: auto; flex-shrink: 0; align-items: center;
}
.sa-btn {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg); color: var(--tm); font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; text-decoration: none;
  font-family: var(--font-b); font-weight: 700;
}
.sa-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-glow); }
.sa-play { font-size: .6rem; }
.sa-buy { font-size: .75rem; font-weight: 800; }
.sa-stream { font-size: .8rem; }

/* --- Reaction Buttons (lips + fire) --- */
.sa-react {
  background: none; border: none; cursor: pointer; font-size: 0.75rem;
  padding: 0.1rem 0.2rem; border-radius: 4px; transition: transform 0.15s, opacity 0.2s;
  opacity: 0.35; line-height: 1;
}
.sa-react:hover { transform: scale(1.3); opacity: 1; }
.sa-react.active { opacity: 1; transform: scale(1.1); }
.sa-act {
  text-decoration: none; font-size: 0.65rem; padding: 0.1rem 0.3rem;
  border-radius: 4px; background: rgba(255,45,123,0.1); color: #ff2d7b;
  font-weight: 600; transition: background 0.2s; display: flex; align-items: center;
}
.sa-act:hover { background: rgba(255,45,123,0.2); }
li:hover .sa-react { opacity: 0.8; }
li:hover .sa-react.active { opacity: 1; }
.song-list li { flex-wrap: nowrap; }
.song-list .song-name { flex: 1; min-width: 0; display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- About / Artists Grid --- */
.artists-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.artist-card {
  background: var(--bg3); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(255,45,123,.08);
}
.artist-card img {
  width: 100%; border-radius: 8px; margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}
.artist-card h2 { font-size: 1.6rem; margin-bottom: .3rem; }
.artist-card .sec-sub { margin-bottom: 1.5rem; }
.artist-card p { color: var(--ts); line-height: 1.8; margin-bottom: .8rem; font-size: .92rem; }
.artist-card .pink-accent {
  color: var(--pink); font-style: italic; font-family: var(--font-d);
}

/* --- Stats Banner --- */
.stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2rem 0; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-d); font-size: 2.5rem; color: var(--pink); }
.stat__label { font-size: .8rem; color: var(--tm); text-transform: uppercase; letter-spacing: .08em; }

/* --- Album Cards --- */
.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.album-card {
  background: var(--bg3); border-radius: 12px; padding: 2rem; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.album-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(255,45,123,.08);
  border-color: var(--border-p);
}
.album-card h3 { font-size: 1.2rem; color: var(--tp); margin-bottom: .3rem; }
.album-genre { font-size: .78rem; color: var(--tm); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .8rem; }
.album-badge {
  display: inline-block; padding: .2rem .7rem; border-radius: 20px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: .6rem;
}
.badge-released { background: rgba(184,146,47,.12); color: var(--gold-d); }
.badge-dropping {
  background: var(--pink-glow); color: var(--pink);
  box-shadow: 0 0 12px rgba(255,45,123,.15);
}

/* Song list inside album */
.song-list { list-style: none; margin-top: 1rem; }
.song-list li {
  display: flex; align-items: center; gap: .8rem;
  padding: .5rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--ts);
}
.song-list li:last-child { border-bottom: none; }
.song-num { font-family: var(--font-d); color: var(--tm); min-width: 24px; font-size: 1rem; }
.song-name { color: var(--tp); transition: color .3s; }
.song-name:hover { color: var(--pink); }

/* --- Video Badge --- */
.video-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff; font-size: .6rem; font-weight: 700;
  padding: 2px 7px; border-radius: 10px;
  letter-spacing: .03em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(255,45,123,.3);
  animation: badge-glow 3s ease-in-out infinite alternate;
}
.video-badge svg { width: 10px; height: 10px; fill: currentColor; }
@keyframes badge-glow {
  0% { box-shadow: 0 1px 4px rgba(255,45,123,.3); }
  100% { box-shadow: 0 2px 8px rgba(255,45,123,.5); }
}
.shorts-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #fff; font-size: .6rem; font-weight: 700;
  padding: 2px 7px; border-radius: 10px;
  letter-spacing: .03em; white-space: nowrap; flex-shrink: 0;
}

/* --- Listen Now Section --- */
.listen-now-section { text-align: center; }
.section-vibe { color: var(--tm); font-size: .85rem; font-style: italic; margin-bottom: 1.2rem; }
.listen-now-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff; text-decoration: none; padding: 1.2rem 2.5rem;
  border-radius: 60px; font-size: 1rem; transition: all .3s;
  box-shadow: 0 4px 20px rgba(255,45,123,.3);
}
.listen-now-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,45,123,.4); }
.listen-now-text { text-align: left; }
.listen-now-text span { display: block; font-size: .75rem; opacity: .8; margin-top: .2rem; }
.play-pulse {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.2); position: relative;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-pulse::after { content: ''; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.play-pulse::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* --- Song Nav Button Variants --- */
.song-nav__btn--play { background: var(--pink) !important; color: #fff !important; }
.song-nav__btn--buy { background: var(--gold) !important; color: var(--bg) !important; font-weight: 700; }
.song-nav__btn--share { border-color: var(--pink) !important; color: var(--pink) !important; }

/* --- Share Section --- */
.share-section { text-align: center; }
.share-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .6rem; max-width: 600px; margin: 0 auto;
}
.share-card {
  display: flex; align-items: center; justify-content: center;
  padding: .7rem 1rem; border-radius: 8px; font-size: .78rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--card-b);
  color: var(--ts); text-decoration: none; cursor: pointer;
  transition: all .2s; text-align: center;
}
.share-card:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-1px); }

/* --- Buy Button Featured --- */
.buy-btn--featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-d)) !important;
  color: var(--bg) !important; border: none !important;
}
.buy-btn--featured .buy-label { color: var(--bg); }
.buy-btn--featured .buy-sub { color: rgba(14,11,8,.6); }

/* --- Campfire Comments --- */
.campfire-section { text-align: center; }
.campfire-glow {
  background: linear-gradient(180deg, rgba(201,168,76,.05) 0%, rgba(255,45,123,.03) 100%);
  border: 1px solid var(--card-b); border-radius: 12px; padding: 1.5rem; max-width: 640px; margin: 0 auto;
}
.campfire-empty { padding: 2rem; color: var(--tm); }
.fire-emoji { font-size: 2rem; display: block; margin-bottom: .5rem; }
.campfire-comment {
  text-align: left; padding: 1rem; border-bottom: 1px solid rgba(201,168,76,.1);
}
.campfire-comment:last-child { border-bottom: none; }
.campfire-author { color: var(--gold); font-size: .85rem; }
.campfire-comment p { color: var(--ts); font-size: .9rem; margin: .3rem 0; line-height: 1.5; }
.campfire-time { color: var(--tm); font-size: .7rem; }
.campfire-pending { opacity: .6; }
.campfire-form {
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(201,168,76,.15);
}
.campfire-form input, .campfire-form textarea {
  background: var(--bg); border: 1px solid var(--card-b); color: var(--ts);
  padding: .7rem 1rem; border-radius: 6px; font-size: .85rem; font-family: inherit;
  outline: none; transition: border-color .3s;
}
.campfire-form input:focus, .campfire-form textarea:focus { border-color: var(--gold); }
.campfire-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--bg); border: none; padding: .8rem 2rem; border-radius: 6px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; align-self: flex-start;
}
.campfire-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,.3); }

/* --- Self-hosted Video Grid --- */
.self-video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.self-video { border-radius: 10px; overflow: hidden; background: #000; }
.self-video video {
  width: 100%; max-height: 500px; object-fit: contain;
  border-radius: 10px; background: #000;
}
.video-label { text-align: center; font-size: .72rem; color: var(--tm); padding: .4rem 0; }
@media(max-width:600px) {
  .self-video-grid { grid-template-columns: 1fr; }
  .self-video video { max-height: 400px; }
}

/* --- YouTube Embed on Song Pages --- */
.yt-embed {
  position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.yt-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.yt-shorts-row {
  display: flex; gap: 1rem; overflow-x: auto; padding: .5rem 0 1rem;
  scrollbar-width: thin; scrollbar-color: var(--pink) var(--bg2);
}
.yt-short {
  flex: 0 0 200px; height: 356px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.yt-short iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 600px) {
  .yt-short { flex: 0 0 160px; height: 284px; }
}
.song-nav__btn--video {
  background: linear-gradient(135deg, var(--pink), var(--pink-d)) !important;
  color: #fff !important; border-color: var(--pink) !important;
}

/* --- Mood Cards --- */
.mood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.mood-card {
  padding: 1.5rem 1.2rem; border-radius: 12px; text-align: center;
  background: var(--bg3); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.mood-card:hover {
  transform: translateY(-4px); border-color: var(--pink);
  box-shadow: 0 12px 35px rgba(255,45,123,.12);
}
.mood-card h4 {
  font-family: var(--font-d); font-size: 1.05rem; color: var(--tp);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.mood-subtitle {
  display: block; font-size: .78rem; color: var(--tm); font-style: italic;
  margin-top: .2rem; font-weight: 400; letter-spacing: 0;
}
.mood-card p { font-size: .78rem; color: var(--tm); margin-top: .5rem; line-height: 1.4; }
.mood-card--soon { opacity: .55; cursor: default; }
.mood-card--soon:hover { transform: none; border-color: var(--border); box-shadow: none; }
.mood-badge-soon {
  display: inline-block; margin-top: .6rem; padding: .2rem .8rem;
  font-size: .65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 50px; background: var(--border); color: var(--tm);
}

/* --- Streaming Buttons --- */
.stream-bar { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 2rem; }
.stream-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.8rem; border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: #fff; transition: transform .3s, box-shadow .3s;
}
.stream-btn:hover { transform: scale(1.06); color: #fff; }
.stream-spotify { background: #1DB954; }
.stream-apple { background: linear-gradient(135deg, #FA2D55, #A833D6); }
.stream-tiktok { background: #222; border: 1px solid #555; }
.stream-youtube { background: #FF0000; }

/* --- Gallery --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px;
  transition: all .5s;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(255,45,123,.15); }

/* --- Sync Licensing --- */
.sync-section {
  text-align: center; padding: 4rem 2rem; max-width: 900px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,45,123,.03) 0%, rgba(184,146,47,.03) 100%);
  border-radius: 20px; border: 1px solid var(--border-p);
}
.sync-section h2 { margin-bottom: .4rem; }
.sync-section p { color: var(--ts); line-height: 1.8; font-size: .95rem; margin: 0 auto; }
.sync-stats {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin: 1.5rem 0;
}
.sync-stat {
  text-align: center; padding: .8rem 1.2rem;
  background: rgba(255,255,255,.6); border-radius: 10px;
}
.sync-stat strong { display: block; font-family: var(--font-d); font-size: 1.3rem; color: var(--pink); }
.sync-stat span { font-size: .72rem; color: var(--tm); text-transform: uppercase; letter-spacing: 1px; }
.sync-btn {
  display: inline-block; margin-top: 1.5rem; padding: .8rem 2rem;
  border: 1px solid var(--pink); color: var(--pink); border-radius: 50px;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; transition: all .3s;
}
.sync-btn:hover { background: var(--pink); color: #fff; box-shadow: 0 8px 30px rgba(255,45,123,.3); }

/* --- Footer --- */
.footer {
  background: #1a1410; padding: 3rem 2rem; text-align: center;
  border-top: 2px solid var(--pink-d);
}
.footer img { height: 50px; margin: 0 auto 1rem; opacity: .7; }
.footer p { font-size: .78rem; color: #8a7e70; margin: 0 auto; }
.footer .gold-line { color: var(--pink-l); font-size: .7rem; letter-spacing: 1px; margin-top: .5rem; }

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 3rem; text-align: center;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: .8rem; }
.page-header p { margin: 0 auto; font-size: 1.1rem; }

/* --- Pink Accent Helpers --- */
.pink-glow { box-shadow: 0 0 30px rgba(255,45,123,.1); }
.pink-border { border-color: rgba(255,45,123,.25) !important; }
.pink-text { color: var(--pink) !important; }

/* ============================================
   SONG PAGE — Dark Premium Pink-Accent Theme
   ============================================ */

/* Song Hero */
.song-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  background: linear-gradient(170deg, #1a1410 0%, #141018 40%, #1c0f1a 70%, #0d0b0f 100%);
  position: relative;
  overflow: hidden;
}
.song-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,45,123,.08) 0%, transparent 60%);
  pointer-events: none;
}
.song-hero .container { position: relative; z-index: 1; }
.song-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.song-hero-image {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,45,123,.35);
  box-shadow: 0 0 30px rgba(255,45,123,.2), 0 12px 40px rgba(0,0,0,.5);
}
.song-hero-text { flex: 1; }
.song-hero-art { flex-shrink: 0; }
.song-hero-art img {
  width: 180px; height: 180px; border-radius: 12px; object-fit: cover;
  border: 2px solid rgba(255,45,123,.35);
  box-shadow: 0 0 30px rgba(255,45,123,.2), 0 12px 40px rgba(0,0,0,.5);
}

/* Song Title with shimmer */
@keyframes song-title-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.song-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-family: var(--font-d);
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: #faf6f0;
  text-shadow: 0 0 30px rgba(255,45,123,.25), 0 0 60px rgba(255,45,123,.1);
  background: linear-gradient(
    90deg,
    #faf6f0 0%,
    #faf6f0 40%,
    rgba(255,45,123,.6) 50%,
    #faf6f0 60%,
    #faf6f0 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: song-title-shimmer 6s ease-in-out infinite;
}
.song-artist {
  font-size: 1.1rem;
  color: var(--pink-l);
  margin-bottom: 0.8rem;
}
.song-details {
  font-size: 0.9rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.detail-item strong { color: rgba(255,255,255,.7); }

/* Quick-Jump Navigation */
.song-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.song-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,45,123,.08);
  border: 1px solid rgba(255,45,123,.25);
  border-radius: 50px;
  color: #faf6f0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}
.song-nav__btn:hover {
  background: rgba(255,45,123,.18);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 0 16px rgba(255,45,123,.25);
  transform: translateY(-1px);
}
.song-nav__btn:active {
  transform: translateY(0);
}

/* Smooth scroll for anchor navigation */
.song-page-body { scroll-behavior: smooth; }
.song-page-body [id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* Song Tags / Mood Badges */
.song-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(255,45,123,.08);
  border: 1px solid rgba(255,45,123,.25);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--pink-l);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  transition: all .3s;
}
.badge:hover {
  background: rgba(255,45,123,.15);
  border-color: rgba(255,45,123,.4);
  box-shadow: 0 0 12px rgba(255,45,123,.15);
}
.badge--mood {
  background: rgba(255,45,123,.12);
  border-color: rgba(255,45,123,.35);
  color: var(--pink);
  font-weight: 500;
}

/* Song Sections */
.song-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.song-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #faf6f0;
}
.song-section .pink-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--pink), transparent);
  margin-bottom: 1.5rem;
}

/* Story / Behind the Song — premium editorial feature */
#story h2 {
  font-family: var(--font-d);
  font-style: italic;
  letter-spacing: 0.02em;
}
#story .pink-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #ff2d7b, #d4175f, transparent);
  margin-bottom: 2rem;
}
.story-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,45,123,.06) 0%, rgba(255,255,255,.02) 40%, rgba(255,45,123,.04) 100%);
  border: 1px solid rgba(255,45,123,.15);
  border-left: 3px solid #ff2d7b;
  border-radius: 2px 12px 12px 2px;
  padding: 2.5rem 3rem 2.5rem 3.5rem;
  max-width: 760px;
  box-shadow: 0 4px 30px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,45,123,.08);
}
.story-card::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: 0.4rem;
  font-family: var(--font-d);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,45,123,.25);
  pointer-events: none;
}
.story-card::after {
  content: 'Behind the Song';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff2d7b;
  background: rgba(255,45,123,.08);
  border: 1px solid rgba(255,45,123,.2);
  border-radius: 3px;
  padding: 0.25rem 0.65rem;
}
.story-text {
  max-width: 680px;
  font-family: var(--font-d);
  font-size: 1.12rem;
  line-height: 2;
  color: #f8f0e0 !important;
  font-style: italic;
  font-weight: 400;
}
.story-text p {
  margin-bottom: 1.4rem;
  color: #f8f0e0 !important;
  opacity: 1 !important;
}
.story-text p:first-child::first-letter {
  font-family: var(--font-d);
  font-size: 2.4em;
  float: left;
  line-height: 0.85;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: #d4a84a;
  font-style: normal;
  font-weight: 700;
}
.story-text p:last-child {
  margin-bottom: 0;
}

/* Lyrics Section */
.lyrics-heading {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #faf6f0;
  margin-bottom: 0.5rem;
}
.lyrics-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--pink), transparent);
  margin-bottom: 1.5rem;
}
.lyrics-content {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 2.1;
  color: #fff;
  white-space: pre-line;
  padding: 1.5rem 0;
  font-family: var(--font-d);
  font-weight: 400;
}

/* Stream / Listen Options */
.listen-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.listen-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,45,123,.15);
  border-radius: 8px;
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.listen-option:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,45,123,.15);
}
.listen-option--primary {
  background: linear-gradient(135deg, var(--pink-d), var(--pink));
  border-color: var(--pink);
  color: #fff;
  font-weight: 600;
}
.listen-option--primary:hover {
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  color: #fff;
  box-shadow: 0 0 30px rgba(255,45,123,.3);
}

/* Buy Section */
.buy-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,45,123,.1);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1.5rem;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.buy-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,.02);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--pink-d), var(--pink), var(--pink-l)) 1;
  color: #faf6f0;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}
.buy-btn:hover {
  background: rgba(255,45,123,.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,45,123,.25);
}
.buy-btn .buy-label { font-size: 1rem; font-weight: 600; }
.buy-btn .buy-sub { font-size: 0.8rem; color: rgba(255,255,255,.45); margin-top: 0.3rem; }
.buy-btn:hover .buy-sub { color: rgba(255,255,255,.7); }
.buy-btn--album {
  border-image: linear-gradient(135deg, var(--pink-d), var(--gold), var(--pink)) 1;
}
.buy-btn--album:hover {
  box-shadow: 0 6px 25px rgba(255,45,123,.2);
}
.help-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--pink-l);
}
.help-link:hover { color: var(--pink); }

/* More Songs Grid */
.more-songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.more-song-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.more-song-card:hover {
  border-color: var(--pink);
  border-image: linear-gradient(135deg, var(--pink-d), var(--pink-l)) 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,45,123,.12);
}
.more-song-card h4 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: #faf6f0;
  margin-bottom: 0.4rem;
}
.more-song-card p { font-size: 0.85rem; color: rgba(255,255,255,.4); }

/* Share Bar */
.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.5rem;
}
.share-bar span { font-size: 0.85rem; color: rgba(255,255,255,.4); margin-right: 0.3rem; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  color: rgba(255,255,255,.6);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }
.share-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,45,123,.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,45,123,.15);
}
.share-btn--fb:hover { color: #1877f2; border-color: #1877f2; background: rgba(24,119,242,.08); box-shadow: 0 4px 15px rgba(24,119,242,.15); }
.share-btn--tw:hover { color: #1da1f2; border-color: #1da1f2; background: rgba(29,161,242,.08); box-shadow: 0 4px 15px rgba(29,161,242,.15); }
.share-btn--ig:hover { color: #e4405f; border-color: #e4405f; background: rgba(228,64,95,.08); box-shadow: 0 4px 15px rgba(228,64,95,.15); }
.share-btn--tiktok:hover { color: #ff0050; border-color: #ff0050; background: rgba(255,0,80,.08); box-shadow: 0 4px 15px rgba(255,0,80,.15); }
.share-btn--copy:hover { color: var(--pink); border-color: var(--pink); background: rgba(255,45,123,.08); box-shadow: 0 4px 15px rgba(255,45,123,.15); }

/* Radio Banner (song page) */
.radio-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,45,123,.05));
  border: 1px solid rgba(255,45,123,.15);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.radio-banner:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,45,123,.15);
}
.radio-icon { font-size: 1.5rem; }
.radio-banner-text { font-size: 0.9rem; color: rgba(255,255,255,.6); }
.radio-banner-text strong { color: var(--pink); display: block; font-size: 1rem; }

/* Collapsible (legacy support) */
.collapsible__trigger {
  background: none; border: none; color: #faf6f0; font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 2rem); cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.collapsible__trigger::after { content: '+'; font-size: 1.2rem; color: var(--pink); transition: transform 0.3s; }
.collapsible__trigger.is-open::after { content: '\2212'; }
.collapsible__content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.collapsible__content.is-open { max-height: 5000px; }

/* Viral Footer */
.viral-footer { text-align: center; padding: 3rem 0; }
.viral-footer p { font-size: 1rem; font-style: italic; color: rgba(255,255,255,.35); margin: 0 auto; }

/* Back Link */
.back-link { display: inline-block; margin-bottom: 1rem; font-size: 0.9rem; color: var(--pink-l); }
.back-link:hover { color: var(--pink); }

/* Song page body override */
.song-page-body {
  background: #0d0b0f;
  color: rgba(255,255,255,.8);
}
.song-page-body .nav {
  background: rgba(13,11,15,.92);
}
.song-page-body .nav.scrolled {
  background: rgba(13,11,15,.97);
  border-color: rgba(255,255,255,.06);
}
.song-page-body .nav__logo span { color: #faf6f0; }
.song-page-body .nav__links a { color: rgba(255,255,255,.6); }
.song-page-body .nav__links a:hover { color: var(--pink); }
.song-page-body .nav__toggle span { background: #faf6f0; }
.song-page-body .container { color: rgba(255,255,255,.8); }
.song-page-body .footer { background: #080710; }

/* Song page responsive */
@media (max-width: 768px) {
  .song-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .song-hero-image { width: 140px; height: 140px; }
  .song-hero-art img { width: 140px; height: 140px; }
  .song-tags { justify-content: center; }
  .song-details { justify-content: center; }
  .listen-options { grid-template-columns: 1fr; }
  .share-bar { gap: 0.4rem; }
  .story-card { padding: 1.5rem 1.5rem 1.5rem 2rem; }
  .story-card::before { font-size: 3.5rem; left: 0.3rem; }
  .story-card::after { position: static; display: inline-block; margin-bottom: 1rem; }
  .story-text { font-size: 1.05rem; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .artists-grid { grid-template-columns: 1fr; }
  .album-grid { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .section { padding: 4rem 0; }
  .hero { min-height: 90vh; }
  .container { padding: 0 1.25rem; }
  .stats { gap: 1.5rem; }
  .radio-player { padding: .5rem 1rem .5rem .5rem; }
  .sync-stats { gap: 1rem; }
  .modal-content { padding: 1.5rem; }
  .sa-btn { width: 26px; height: 26px; }
  .sa-react { font-size: 0.65rem; }
  .sa-act { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .mood-grid { grid-template-columns: 1fr; }
  .stream-bar { flex-direction: column; align-items: center; }
  .sync-stats { flex-direction: column; align-items: center; }
  .radio-mode-bar { gap: .3rem; }
  .radio-mode { padding: .25rem .7rem; font-size: .65rem; }
}

/* === DARK THEME FIXES — Song Page Readability (2026-03-30) === */
.song-page-body .campfire-comment p { color: rgba(255,255,255,.7); }
.song-page-body .campfire-empty { color: rgba(255,255,255,.45); }
.song-page-body .campfire-time { color: rgba(255,255,255,.3); }
.song-page-body .campfire-author { color: #d4a843; }
.song-page-body .section-vibe { color: rgba(255,255,255,.45); }
.song-page-body .campfire-form input,
.song-page-body .campfire-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #faf6f0;
}
.song-page-body .campfire-glow {
  border: 1px solid rgba(255,255,255,.06);
}
.song-page-body .share-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
}
.song-page-body h3[style*="color:var(--ts)"] { color: #faf6f0 !important; }

/* === Sticky Social Action Bar — Song Pages === */
.song-action-bar {
  position: sticky;
  top: 56px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1rem;
  background: rgba(13,11,15,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,45,123,.15);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  flex-wrap: wrap;
}
.sab-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: inherit;
}
.sab-btn:hover {
  background: rgba(255,45,123,.12);
  border-color: rgba(255,45,123,.3);
  color: #fff;
  transform: scale(1.05);
}
.sab-btn:active { transform: scale(.95); }
.sab-icon { font-size: 1.1rem; }
.sab-count { font-size: .75rem; font-weight: 600; }
.sab-label { font-size: .75rem; font-weight: 500; }
.sab-lips:hover, .sab-lips.active { background: rgba(255,45,123,.2); border-color: #ff2d7b; }
.sab-fire:hover, .sab-fire.active { background: rgba(255,100,0,.2); border-color: #ff6400; }
.sab-buy { background: linear-gradient(135deg, rgba(255,45,123,.15), rgba(255,45,123,.08)); border-color: rgba(255,45,123,.3); color: #ff2d7b; font-weight: 600; }
.sab-buy:hover { background: linear-gradient(135deg, #ff2d7b, #d4175f); color: #fff; }
@media (max-width: 600px) {
  .song-action-bar { gap: .3rem; padding: .4rem .5rem; }
  .sab-btn { padding: .3rem .5rem; font-size: .7rem; }
  .sab-label { display: none; }
  .sab-icon { font-size: 1rem; }
}
