:root {
  --bg: #07050d;
  --text: #f6f3ff;
  --muted: #a99fc4;
  --accent: #b14bff;
  --accent-2: #ff4d9d;
  --accent-3: #4dd0ff;
  --accent-grad: linear-gradient(135deg, #b14bff 0%, #ff4d9d 100%);
  --card: rgba(255, 255, 255, 0.045);
  --card-border: rgba(255, 255, 255, 0.09);
  --good: #38e8a0;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 0 0 130px;
  overflow-x: hidden;
}

/* ── Living background: drifting aurora blobs + grain ───── */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.blob.b1 { width: 60vmax; height: 60vmax; top: -25vmax; left: -15vmax;
  background: radial-gradient(circle, #b14bff, transparent 70%);
  animation: drift1 22s ease-in-out infinite; }
.blob.b2 { width: 55vmax; height: 55vmax; bottom: -25vmax; right: -15vmax;
  background: radial-gradient(circle, #ff4d9d, transparent 70%);
  animation: drift2 26s ease-in-out infinite; }
.blob.b3 { width: 40vmax; height: 40vmax; top: 30%; left: 40%;
  background: radial-gradient(circle, #4dd0ff, transparent 70%);
  opacity: 0.35; animation: drift3 30s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(8vmax, 6vmax) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-7vmax, -5vmax) scale(1.15); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-6vmax, 7vmax) scale(0.9); } }

.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
}

.wrap { max-width: 640px; margin: 0 auto; padding: 24px 20px 0; position: relative; }

/* ── Header ────────────────────────────────────────────── */
header { text-align: center; padding: 22px 0 14px; }

.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 77, 157, 0.12);
  border: 1px solid rgba(255, 77, 157, 0.35);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(255, 77, 157, 0.6); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 157, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 157, 0); }
}

h1 {
  font-size: clamp(34px, 9.5vw, 56px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.03em;
  background: linear-gradient(110deg, #b14bff, #ff4d9d, #4dd0ff, #b14bff);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer { to { background-position: 300% center; } }

.subtitle { color: var(--muted); margin-top: 12px; font-size: 15px; }

/* ── Equalizer bars (music vibe) ───────────────────────── */
.eq { display: flex; align-items: flex-end; justify-content: center; gap: 4px;
  height: 26px; margin: 16px 0 4px; }
.eq span {
  width: 4px; border-radius: 4px; background: var(--accent-grad);
  animation: bounce 1s ease-in-out infinite;
}
.eq span:nth-child(1) { animation-delay: -0.9s; }
.eq span:nth-child(2) { animation-delay: -0.4s; }
.eq span:nth-child(3) { animation-delay: -0.7s; }
.eq span:nth-child(4) { animation-delay: -0.2s; }
.eq span:nth-child(5) { animation-delay: -0.6s; }
.eq span:nth-child(6) { animation-delay: -0.3s; }
.eq span:nth-child(7) { animation-delay: -0.8s; }
@keyframes bounce { 0%,100% { height: 5px; } 50% { height: 26px; } }
@media (prefers-reduced-motion: reduce) { .eq span { animation: none; height: 14px; } }

/* ── Cards / form ──────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

form.request { margin: 24px 0 32px; position: relative; }
.field { margin-bottom: 12px; }
.field:last-of-type { margin-bottom: 16px; }

input[type="text"], input[type="password"] {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--card-border);
  border-radius: 14px; color: var(--text); font-size: 16px; padding: 15px 16px;
  transition: border-color 0.15s, box-shadow 0.2s, background 0.15s;
}
input::placeholder { color: #7e7596; }
input:focus { outline: none; border-color: var(--accent);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 4px rgba(177, 75, 255, 0.15); }

button { font-family: inherit; cursor: pointer; border: none; border-radius: 14px;
  font-weight: 700; transition: transform 0.08s ease, opacity 0.15s, box-shadow 0.2s; }
button:active { transform: scale(0.97); }

.btn-primary {
  width: 100%; color: white; font-size: 17px; padding: 17px;
  background: var(--accent-grad); background-size: 180% auto;
  box-shadow: 0 10px 30px rgba(177, 75, 255, 0.4);
  position: relative; overflow: hidden;
}
.btn-primary:hover { background-position: right center; }
.btn-primary:disabled { opacity: 0.55; cursor: default; }
/* sheen sweep */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep { 0%,60% { left: -120%; } 80%,100% { left: 140%; } }

/* ── Section heading ───────────────────────────────────── */
.section-head { display: flex; align-items: baseline; justify-content: space-between;
  margin: 6px 4px 16px; }
.section-head h2 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 800; }
.count { font-size: 13px; color: var(--muted); }

/* ── Public list ───────────────────────────────────────── */
.list { display: flex; flex-direction: column; gap: 11px; }

.item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 14px 16px;
  transition: transform 0.18s cubic-bezier(.2,.8,.3,1.2), border-color 0.2s;
}
.item:hover { transform: translateY(-2px); }
.item--new { animation: pop 0.4s cubic-bezier(.2,.9,.3,1.3); }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; } }

/* Crowned #1 */
.item.top {
  border-color: rgba(255, 77, 157, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 77, 157, 0.25), 0 16px 40px rgba(255, 77, 157, 0.16);
  background: linear-gradient(180deg, rgba(255,77,157,0.10), rgba(255,255,255,0.04));
}
.item.top .item-rank { color: transparent; }

.item-rank { width: 30px; text-align: center; font-weight: 850; font-size: 16px;
  color: var(--muted); flex: none; position: relative; }
.item.top .item-rank::after { content: "👑"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  -webkit-text-fill-color: initial; }

.item-body { flex: 1; min-width: 0; }
.item-song { font-weight: 700; font-size: 16px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.item-artist { color: var(--muted); font-size: 14px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }

/* Vote button */
.vote {
  flex: none; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px; min-width: 60px; padding: 9px 6px;
  background: rgba(0, 0, 0, 0.28); border: 1px solid var(--card-border);
  border-radius: 14px; color: var(--text); position: relative; overflow: visible;
}
.vote .arrow { font-size: 15px; line-height: 1; color: var(--muted);
  transition: color 0.15s, transform 0.2s; }
.vote .num { font-size: 18px; font-weight: 850; line-height: 1.1; }
.vote.voted { background: var(--accent-grad); border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 77, 157, 0.35); }
.vote.voted .arrow { color: white; transform: translateY(-1px); }
/* burst ring on vote */
.vote.voted::before {
  content: ""; position: absolute; inset: -4px; border-radius: 18px;
  border: 2px solid var(--accent-2); opacity: 0; animation: ring 0.5s ease-out;
}
@keyframes ring { 0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.4); } }

.empty { text-align: center; color: var(--muted); padding: 44px 20px; font-size: 15px; }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(140px);
  background: var(--good); color: #04231a; font-weight: 800;
  padding: 14px 24px; border-radius: 999px; box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.4); z-index: 50; max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Undo bar (recover deletions) ──────────────────────── */
.undo-bar {
  position: fixed; left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(140px);
  display: flex; align-items: center; gap: 16px;
  background: #1d1530; color: var(--text);
  border: 1px solid var(--card-border);
  padding: 12px 14px 12px 20px; border-radius: 999px;
  box-shadow: var(--shadow); transition: transform 0.35s cubic-bezier(.2,.9,.3,1.4);
  z-index: 60; max-width: 92vw; font-weight: 600; font-size: 15px;
}
.undo-bar.show { transform: translateX(-50%) translateY(0); }
.undo-bar button {
  background: var(--accent-grad); color: #fff; font-weight: 800;
  padding: 9px 18px; border-radius: 999px; font-size: 14px;
}

footer { text-align: center; color: #6c6385; font-size: 12px; margin-top: 44px; }
footer a { color: var(--muted); }

.share-btn {
  margin-top: 16px; background: var(--card); border: 1px solid var(--card-border);
  color: var(--text); font-size: 14px; font-weight: 700; padding: 11px 20px; border-radius: 999px;
}
.ago { color: #6c6385; font-size: 12px; font-weight: 600; margin-left: 2px; }

/* ── DJ page ───────────────────────────────────────────── */
.gate { max-width: 380px; margin: 15vh auto 0; text-align: center; }
.gate h1 { font-size: 34px; margin-bottom: 8px; }
.gate p { color: var(--muted); margin-bottom: 22px; }

.cols { display: flex; flex-direction: column; gap: 28px; }

.dj-item { display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 15px; padding: 12px 14px; transition: border-color 0.2s; }
.dj-item.playing { border-color: var(--good);
  box-shadow: 0 0 0 1px var(--good), 0 10px 28px rgba(56, 232, 160, 0.2); }
.dj-item.dragging { opacity: 0.35; }

.handle { flex: none; color: var(--muted); font-size: 18px; cursor: grab;
  padding: 0 4px; touch-action: none; letter-spacing: -3px; }
.handle:active { cursor: grabbing; }

.votes-pill { flex: none; min-width: 44px; text-align: center; font-weight: 850;
  font-size: 14px; color: var(--accent-2); }

.dj-actions { display: flex; gap: 7px; flex: none; }
.icon-btn { width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; font-size: 16px; background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--card-border); border-radius: 12px; color: var(--text); }
.icon-btn.go { background: rgba(56, 232, 160, 0.16); border-color: rgba(56, 232, 160, 0.4); }
.icon-btn.add { background: var(--accent-grad); border-color: transparent; color: white; }

.toolbar { display: flex; gap: 10px; margin: 4px 0 14px; flex-wrap: wrap; }
.btn-ghost { background: var(--card); border: 1px solid var(--card-border);
  color: var(--muted); padding: 10px 15px; font-size: 13px; font-weight: 600; }
a.btn-ghost { text-decoration: none; display: inline-flex; align-items: center; border-radius: 12px; }
.btn-ghost.on { background: rgba(177, 75, 255, 0.16); border-color: rgba(177, 75, 255, 0.55); color: #e3c8ff; }

/* small label above each DJ button group */
.bar-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 18px 2px 8px; }

p.tip { font-size: 12px; color: #6c6385; margin: 2px 4px 12px; }

/* ── Album art ─────────────────────────────────────────── */
.art { width: 46px; height: 46px; border-radius: 10px; object-fit: cover;
  flex: none; background: #241a38; }
.art.sm { width: 40px; height: 40px; }

/* ── Now Playing hero ──────────────────────────────────── */
#nowPlaying { margin: 4px 0 26px; }
.np-card {
  display: flex; gap: 16px; align-items: center;
  background: linear-gradient(135deg, rgba(56,232,160,0.14), rgba(177,75,255,0.10));
  border: 1px solid rgba(56,232,160,0.4); border-radius: var(--radius);
  padding: 16px; box-shadow: 0 14px 40px rgba(56,232,160,0.12);
}
.np-art { width: 92px; height: 92px; border-radius: 16px; object-fit: cover;
  flex: none; background: #241a38; box-shadow: var(--shadow); }
.np-info { min-width: 0; }
.np-label { display: flex; align-items: center; gap: 8px; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--good); font-weight: 800; }
.np-bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; }
.np-bars i { width: 3px; border-radius: 2px; background: var(--good); animation: npb 0.9s ease-in-out infinite; }
.np-bars i:nth-child(2){ animation-delay: -.3s; }
.np-bars i:nth-child(3){ animation-delay: -.6s; }
.np-bars i:nth-child(4){ animation-delay: -.15s; }
@keyframes npb { 0%,100%{ height:3px; } 50%{ height:13px; } }
.np-song { font-size: 22px; font-weight: 850; margin-top: 6px; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-artist { color: var(--muted); font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (prefers-reduced-motion: reduce){ .np-bars i { animation: none; height: 8px; } }

/* ── Compact lists (Up Next / Just Played) ─────────────── */
.list.compact { gap: 8px; margin-bottom: 26px; }
.item.small { padding: 9px 12px; gap: 12px; }
.item.small .item-song { font-size: 15px; }
.item.small.played { opacity: 0.55; }

/* ── Autocomplete ──────────────────────────────────────── */
.ac-wrap { position: relative; }
.autocomplete {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: #160f24; border: 1px solid var(--card-border); border-radius: 14px;
  overflow: hidden auto; max-height: 320px; box-shadow: var(--shadow);
}
.ac-item {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 10px 12px; background: none; border: none; border-radius: 0; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item:focus { background: rgba(255,255,255,0.07); }
.ac-item img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex: none; background: #241a38; }
.ac-item span { display: flex; flex-direction: column; min-width: 0; }
.ac-item b { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-item small { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Ban notice (crowd) ────────────────────────────────── */
.ban-notice {
  background: rgba(255,77,77,0.12); border: 1px solid rgba(255,77,77,0.4);
  color: #ffd2d2; padding: 16px; border-radius: 14px; text-align: center;
  font-weight: 600; margin: 0 0 22px;
}

/* ── DJ manual vote controls ───────────────────────────── */
.vote-ctl { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: none; }
.vbtn {
  width: 30px; height: 22px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border); border-radius: 8px; color: var(--text);
  font-size: 14px; font-weight: 800; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.vbtn.up { color: var(--good); }
.vbtn.down { color: var(--accent-2); }

/* ════════════ HYPE FLAGSHIP ADDITIONS ════════════ */
.toprow { display: flex; align-items: center; justify-content: space-between; }
.presence { font-size: 12px; font-weight: 700; color: #ff8a8a; letter-spacing: .02em; }

/* hype meter */
.hype-wrap { display: flex; align-items: center; gap: 10px; margin: 4px 2px 22px; }
.hype-label { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--muted); }
.hype-track { flex: 1; height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.hype-fill.max { box-shadow: 0 0 14px rgba(255, 210, 63, .9); filter: saturate(1.4) brightness(1.15); }
.takeover.hypeblast { background: radial-gradient(circle, rgba(255,160,50,.55), rgba(13,5,7,.92)); }
.hype-fill { height: 100%; width: 12%; border-radius: 999px;
  background: linear-gradient(90deg, #4dd0ff, #b14bff, #ff4d9d, #ffd23f);
  background-size: 200% 100%; animation: hypeflow 3s linear infinite; transition: width .4s ease; }
@keyframes hypeflow { to { background-position: 200% 0; } }

/* reactions bar */
.react-bar { display: flex; gap: 10px; justify-content: center; margin: 0 0 26px; }
.react-bar button { flex: 1; max-width: 84px; font-size: 26px; padding: 12px 0;
  background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
  backdrop-filter: blur(10px); transition: transform .1s; }
.react-bar button:active { transform: scale(1.25); }

/* floating reaction layer */
.fx-layer { position: fixed; inset: 0; z-index: 70; pointer-events: none; overflow: hidden; }
.float { position: absolute; bottom: 12%; will-change: transform, opacity; animation: floatUp 2.4s ease-out forwards; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  15% { opacity: 1; transform: translateY(-10vh) scale(1.1); }
  100% { transform: translateY(-78vh) scale(1); opacity: 0; }
}

/* live album-art preview inside the form */
.form-art { position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 9px; object-fit: cover; box-shadow: var(--shadow); }

/* preview / boost buttons on rows */
.pv { flex: none; width: 40px; height: 40px; border-radius: 12px; font-size: 14px; font-weight: 800;
  background: rgba(0,0,0,.28); border: 1px solid var(--card-border); color: var(--text); cursor: pointer; }
.pv.on { background: var(--good); border-color: transparent; color: #04231a; }
.boost { flex: none; width: 40px; height: 44px; border-radius: 12px; font-size: 18px; cursor: pointer;
  background: rgba(255,210,63,.16); border: 1px solid rgba(255,210,63,.45); }
.np-card .pv { width: 48px; height: 48px; }

/* listen links */
.links { display: flex; gap: 12px; margin-top: 8px; }
.links a { font-size: 12px; font-weight: 700; color: var(--accent-3); text-decoration: none; border-bottom: 1px solid rgba(77,208,255,.4); }
.np-ded { margin-top: 8px; font-size: 14px; color: #ffd9f0; font-style: italic; }

.foot-actions { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.foot-actions .share-btn { margin-top: 0; text-decoration: none; display: inline-flex; align-items: center; }

/* book-the-DJ contact block */
.dj-contact { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--card-border); }
.dj-contact-label { color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.dj-contact-name { color: var(--text); font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.dj-contact-phone { display: inline-block; color: var(--accent-3); font-size: 15px; font-weight: 700;
  text-decoration: none; padding: 6px 14px; border: 1px solid rgba(77,208,255,.35); border-radius: 999px; }

/* full-screen takeover (your song / drop) */
.takeover { position: fixed; inset: 0; z-index: 9200; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(177,75,255,.55), rgba(7,5,13,.92)); opacity: 0;
  transition: opacity .4s; text-align: center; padding: 24px; backdrop-filter: blur(6px); }
.takeover.show { opacity: 1; }
.takeover-in { animation: pump .6s cubic-bezier(.2,.9,.3,1.4); }
.takeover .big { font-size: clamp(40px, 13vw, 90px); font-weight: 900; line-height: .95; letter-spacing: -.02em;
  background: linear-gradient(110deg,#fff,#ffd23f,#ff4d9d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.takeover .sm { margin-top: 14px; font-size: 20px; font-weight: 700; color: #fff; }
.takeover-in > :first-child { font-size: 64px; }
@keyframes pump { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.count3 { font-size: clamp(90px, 34vw, 280px); font-weight: 900; color: #fff; text-shadow: 0 0 50px rgba(255,77,157,.8); animation: pump .4s ease; }
.count3.drophit { font-size: clamp(48px,16vw,120px); background: linear-gradient(110deg,#ffd23f,#ff4d9d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

@media (prefers-reduced-motion: reduce) { .hype-fill { animation: none; } .float { animation-duration: 1.5s; } }

/* DJ FX buttons: icon + name + what-it-does hint */
.fxbar { display: flex; gap: 10px; margin: 0 0 4px; flex-wrap: wrap; }
.fxbtn { flex: 1; min-width: 120px; padding: 13px 12px 11px; border-radius: 14px; font-weight: 800; font-size: 15px;
  border: none; color: #fff; cursor: pointer; transition: transform .08s; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.2; }
.fxbtn .fx-ico { font-size: 24px; }
.fxbtn small { font-size: 11px; font-weight: 600; opacity: .8; }
.fxbtn:active { transform: scale(.97); }
.fxbtn.flash { background: linear-gradient(135deg, #4dd0ff, #b14bff); }
.fxbtn.horn { background: linear-gradient(135deg, #ffd23f, #ff7e3d); color: #3a1020; }
.fxbtn.drop { background: linear-gradient(135deg, #ff4d9d, #b14bff); }

/* ── Product polish additions ───────────────────────────── */
/* paused-requests notice (calmer than the ban notice) */
.ban-notice.closed {
  background: rgba(77, 208, 255, 0.10); border-color: rgba(77, 208, 255, 0.4);
  color: #cdeeff;
}

/* pause toggle reflects state */
.btn-ghost.paused { background: rgba(255, 210, 63, 0.14);
  border-color: rgba(255, 210, 63, 0.5); color: #ffd23f; }

/* DJ: tap album art to preview */
.pv-art { cursor: pointer; }
.pv-art.playing { outline: 2px solid var(--good); outline-offset: 2px;
  box-shadow: 0 0 18px rgba(56, 232, 160, 0.5); }

/* DJ: tiny streaming links in the artist line */
.mlinks { white-space: nowrap; }
.mlinks a { font-size: 11px; font-weight: 700; color: var(--accent-3);
  text-decoration: none; margin-left: 6px; opacity: 0.85; }
.mlinks a:hover { opacity: 1; border-bottom: 1px solid rgba(77, 208, 255, 0.5); }

/* DJ header kicker */
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }

/* ── Live gig tools (feature panel, chips, tips, recap) ─── */
/* DJ ⚙️ feature checkboxes */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.feat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; user-select: none; }
.feat input { width: 19px; height: 19px; accent-color: var(--accent); cursor: pointer; flex: none; }

/* DJ genre filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.chips:empty { margin: 0; }
.chip { background: var(--card); border: 1px solid var(--card-border); color: var(--muted);
  font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; }
.chip.on { background: var(--accent-grad); border-color: transparent; color: #fff; }

/* tip button/link */
.share-btn.tip { background: rgba(56, 232, 160, 0.14); border-color: rgba(56, 232, 160, 0.45);
  color: var(--good); }
.links a.tip { color: var(--good); border-bottom-color: rgba(56, 232, 160, 0.4); }

/* recap FX button */
.fxbtn.recap { background: linear-gradient(135deg, #38e8a0, #4dd0ff); color: #04231a; }
