/* Breathe Music — Public Styles v2.0
   Palette: #0b0d12 bg · #e6c45a gold · #b15cff violet · #4fd1c5 teal
   All colours are injected via CSS custom properties from PHP. */

.bm-shell {
  color: var(--bm-ink);
  background:
    radial-gradient(900px 520px at 10% 10%,  var(--bm-g1), transparent 62%),
    radial-gradient(900px 520px at 90% 18%,  var(--bm-g2), transparent 62%),
    radial-gradient(1100px 720px at 50% 110%, var(--bm-g3), transparent 62%),
    var(--bm-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--bm-r);
  overflow: hidden;
  position: relative;
}

.bm-shell--breakout {
  width: 100vw;
  max-width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.bm-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(20px,3vw,40px);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.bm-hero {
  --bm-adminbar-h: 0px;
  position: relative;
  min-height: calc(100svh - var(--bm-adminbar-h));
  padding: var(--bm-adminbar-h) 0 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bm-hero-video {
  position: absolute;
  inset: -2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.1) contrast(1.05) brightness(.88);
}

.bm-hero-aurora {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(closest-side at 20% 20%, rgba(230,196,90,.22),  rgba(0,0,0,0) 55%),
    radial-gradient(closest-side at 80% 35%, rgba(177,92,255,.20),  rgba(0,0,0,0) 60%),
    radial-gradient(closest-side at 35% 85%, rgba(79,209,197,.12),  rgba(0,0,0,0) 58%),
    conic-gradient(from 200deg, rgba(230,196,90,.12), rgba(177,92,255,.10), rgba(79,209,197,.08));
  mix-blend-mode: screen;
  filter: blur(20px) saturate(1.2);
  opacity: .80;
  animation: bm-aurora 16s ease-in-out infinite;
}

@keyframes bm-aurora {
  0%   { transform: translate3d(-2%,-1%,0) rotate(0deg)  scale(1.02); }
  35%  { transform: translate3d(3%,2%,0)   rotate(8deg)  scale(1.05); }
  70%  { transform: translate3d(-1%,4%,0)  rotate(-6deg) scale(1.03); }
  100% { transform: translate3d(-2%,-1%,0) rotate(0deg)  scale(1.02); }
}

.bm-hero-noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.bm-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,.40) 80%),
    linear-gradient(180deg, rgba(11,13,18,.60), rgba(11,13,18,.12) 40%, rgba(11,13,18,.70));
  opacity: .90;
}

.bm-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, 92vw);
  padding: clamp(22px,4vw,56px);
}

.bm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(230,196,90,.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-ac1);
  box-shadow: 0 0 18px var(--bm-glow);
}

.bm-title {
  margin: 14px 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  text-shadow: 0 10px 40px rgba(0,0,0,.65);
}

.bm-title span {
  background: linear-gradient(90deg, var(--bm-ac2), var(--bm-ac3), var(--bm-ac1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bm-tagline {
  margin: 0 0 6px;
  font-size: clamp(16px,1.6vw,19px);
  color: rgba(233,238,247,.92);
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0,0,0,.55);
}

.bm-subline {
  margin: 0 0 16px;
  max-width: 70ch;
  color: var(--bm-muted);
  font-size: 15px;
}

.bm-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.bm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 700px) { .bm-hero-grid { grid-template-columns: 1fr; } }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--bm-r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: var(--bm-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: border-color .12s, background .12s, transform .12s;
}

.bm-btn:hover {
  border-color: rgba(230,196,90,.35);
  background: rgba(230,196,90,.06);
  transform: translateY(-1px);
}

.bm-btn-primary {
  border-color: rgba(230,196,90,.38);
  background: rgba(230,196,90,.09);
}

.bm-btn-small  { padding: 8px 11px; font-size: 13px; }
.bm-btn-wide   { width: 100%; }
.bm-btn-disabled { opacity: .5; cursor: not-allowed; }
.bm-btn-disabled:hover { transform: none; }

/* ── Cards ───────────────────────────────────────────────────────────────── */

.bm-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  padding: 16px;
}

.bm-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(230,196,90,.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bm-card p { margin: 0; color: var(--bm-muted); font-size: 14px; }

/* ── Sections ────────────────────────────────────────────────────────────── */

.bm-section { padding: 16px 0 6px; }
.bm-section + .bm-section { border-top: 1px solid rgba(255,255,255,.07); margin-top: 24px; padding-top: 28px; }

.bm-h2 {
  margin: 0 0 10px;
  font-size: clamp(20px,2.2vw,30px);
  letter-spacing: -0.01em;
  font-weight: 800;
}

.bm-lead { margin: 0 0 16px; color: var(--bm-muted); max-width: 82ch; }

/* ── Pillars / Lanes ──────────────────────────────────────────────────────── */

.bm-pillars, .bm-lanes {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

@media (max-width: 900px) { .bm-pillars, .bm-lanes { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .bm-pillars, .bm-lanes { grid-template-columns: 1fr; } }

.bm-pillar, .bm-lane {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  padding: 14px;
  min-height: 100px;
}

.bm-pillar b, .bm-lane b { display: block; font-size: 14px; margin-bottom: 5px; }
.bm-pillar small, .bm-lane small { display: block; color: var(--bm-muted); font-size: 13px; }

/* ── Releases ────────────────────────────────────────────────────────────── */

.bm-releases {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

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

.bm-release {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bm-cover { height: 148px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.07); }
.bm-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.bm-cover-empty {
  background:
    radial-gradient(400px 200px at 20% 30%, rgba(230,196,90,.18), transparent 62%),
    radial-gradient(400px 200px at 80% 10%, rgba(177,92,255,.18), transparent 62%),
    rgba(255,255,255,.02);
}

.bm-release-body { padding: 14px; display:flex; flex-direction:column; gap:8px; flex:1; }
.bm-release-title { margin:0; font-weight:800; font-size:15px; }
.bm-release-meta  { margin:0; color:var(--bm-muted); font-size:13px; }

/* ── Roster ──────────────────────────────────────────────────────────────── */

.bm-roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 10px;
}

.bm-artist {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bm-artist-thumb img { width:100%; height:110px; object-fit:cover; display:block; }

.bm-artist b, .bm-artist small { display:block; padding: 8px 10px 4px; }
.bm-artist b { font-size:13px; }
.bm-artist b a { color: var(--bm-ink); text-decoration:none; }
.bm-artist b a:hover { color:var(--bm-ac1); }
.bm-artist small { color:var(--bm-muted); font-size:12px; padding-top:0; padding-bottom:10px; }

/* ── Booking Roster ──────────────────────────────────────────────────────── */

.bm-booking-roster .bm-roster-section { margin: 24px 0; }
.bm-booking-roster h2 { font-size:clamp(18px,2vw,24px); margin:0 0 6px; font-weight:800; }

.bm-booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 12px;
  margin-top: 12px;
}

.bm-booking-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bm-booking-thumb img { width:100%; height:160px; object-fit:cover; display:block; }
.bm-booking-body { padding:14px; display:flex; flex-direction:column; gap:8px; flex:1; }
.bm-booking-body h3 { margin:0; font-size:16px; font-weight:800; }
.bm-booking-body h3 a { color:var(--bm-ink); text-decoration:none; }
.bm-booking-body h3 a:hover { color:var(--bm-ac1); }
.bm-booking-excerpt { margin:0; color:var(--bm-muted); font-size:13px; }
.bm-booking-meta { font-size:12px; color:var(--bm-muted); }
.bm-booking-links { display:flex; gap:8px; flex-wrap:wrap; margin-top:4px; }

/* ── Events ──────────────────────────────────────────────────────────────── */

.bm-events { display:flex; flex-direction:column; gap:14px; }

.bm-event-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: var(--bm-r);
  overflow: hidden;
  display: flex;
  gap: 0;
}

.bm-event-thumb img { width:180px; height:100%; object-fit:cover; display:block; flex-shrink:0; }
.bm-event-body { padding:16px; flex:1; }

.bm-event-date {
  font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size: 12px;
  color: rgba(230,196,90,.88);
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.bm-event-body h3 { margin:0 0 6px; font-size:20px; font-weight:800; }
.bm-event-body h3 a { color:var(--bm-ink); text-decoration:none; }
.bm-event-body h3 a:hover { color:var(--bm-ac1); }
.bm-event-location { color:var(--bm-muted); font-size:14px; margin-bottom:4px; }
.bm-event-lineup   { color:var(--bm-muted); font-size:13px; white-space:pre-wrap; font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace; }

@media (max-width:640px) { .bm-event-card { flex-direction:column; } .bm-event-thumb img { width:100%; height:160px; } }

/* ── Demo & Booking forms ─────────────────────────────────────────────────── */

.bm-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
@media (max-width:900px) { .bm-demo-grid { grid-template-columns:1fr; } }

.bm-demo-rules-card { min-height: 200px; }

.bm-formbox {
  border: 1px solid rgba(230,196,90,.22);
  background: rgba(230,196,90,.05);
  border-radius: var(--bm-r);
  padding: 16px;
}

.bm-formhint { margin:0 0 10px; font-weight:800; font-size:14px; color:rgba(233,238,247,.92); }

.bm-form { display:flex; flex-direction:column; gap:10px; }
.bm-form label { display:flex; flex-direction:column; gap:5px; }
.bm-form label span { font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:rgba(233,238,247,.65); }
.bm-form input,
.bm-form select,
.bm-form textarea {
  border-radius: calc(var(--bm-r) - 2px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--bm-ink);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.bm-form input:focus, .bm-form select:focus, .bm-form textarea:focus {
  border-color: rgba(230,196,90,.45);
  box-shadow: 0 0 0 3px rgba(230,196,90,.15);
}

.bm-form-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
@media (max-width:640px) { .bm-form-row { grid-template-columns:1fr; } }

.bm-rules { margin:10px 0 0; padding-left:18px; color:var(--bm-muted); font-size:13px; }
.bm-rules li { margin:7px 0; }

.bm-notice { padding:10px 12px; border-radius:var(--bm-r); border:1px solid rgba(255,255,255,.12); font-size:13px; font-weight:700; }
.bm-notice-ok  { border-color:rgba(34,197,94,.30);   background:rgba(34,197,94,.10); }
.bm-notice-bad { border-color:rgba(239,68,68,.35);   background:rgba(239,68,68,.10); }

.bm-empty {
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
  border-radius: var(--bm-r);
  padding: 14px;
  color: var(--bm-muted);
}
.bm-empty b { color:rgba(233,238,247,.9); }
.bm-muted { color:var(--bm-muted); }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.bm-footer {
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.07);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color:rgba(233,238,247,.50);
  font-size:12px;
}

/* ── Honeypot ─────────────────────────────────────────────────────────────── */
.bm-hp { position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important; }

@media (prefers-reduced-motion:reduce) { .bm-btn { transition:none; } .bm-btn:hover { transform:none; } .bm-hero-aurora { animation:none; } }

/* ── Features section ─────────────────────────────────────────────────────── */

.bm-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.bm-feature-card {
  background: var(--bm-panel);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s;
}

.bm-feature-card:hover {
  border-color: rgba(255,255,255,.20);
}

.bm-feature-icon {
  font-size: 26px;
  line-height: 1;
}

.bm-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bm-ink);
  margin: 0;
}

.bm-feature-desc {
  font-size: 13px;
  color: var(--bm-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Events placeholder ───────────────────────────────────────────────────── */

.bm-events-placeholder {
  padding: 48px 16px;
  text-align: center;
}

.bm-events-placeholder-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bm-events-placeholder-glyph {
  font-size: 40px;
  opacity: .25;
  line-height: 1;
}

.bm-events-placeholder-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--bm-ink);
  margin: 0;
}

.bm-events-placeholder-sub {
  font-size: 14px;
  color: var(--bm-muted);
  line-height: 1.6;
  margin: 0;
}

.bm-events-notify-form {
  width: 100%;
  max-width: 380px;
}

.bm-notify-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.bm-notify-input {
  flex: 1;
  background: var(--bm-panel);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-r);
  color: var(--bm-ink);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.bm-notify-input:focus {
  border-color: var(--bm-ac1);
}

@media (max-width: 480px) {
  .bm-notify-row { flex-direction: column; }
  .bm-features { grid-template-columns: 1fr; }
}

/* ── Gallery ── */
.bm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
  margin-top: 12px;
}
.bm-gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.07);
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.bm-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) saturate(.85);
  transition: filter .25s, transform .3s;
}
.bm-gallery-thumb:hover img { filter: brightness(1) saturate(1); transform: scale(1.04); }
.bm-gallery-thumb::after {
  content: '⤢';
  position: absolute;
  bottom: 5px; right: 7px;
  font-size: 14px;
  color: rgba(255,255,255,.0);
  transition: color .2s;
}
.bm-gallery-thumb:hover::after { color: rgba(255,255,255,.7); }

/* ── Lightbox ── */
#bm-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}
#bm-lightbox.bm-lb-open { display: flex; align-items: center; justify-content: center; }
.bm-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,8,22,.93);
  cursor: pointer;
}
.bm-lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 92vw;
  max-height: 92vh;
  padding: 0 8px;
}
.bm-lb-img {
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  display: block;
  transition: opacity .15s;
}
.bm-lb-close {
  position: fixed;
  top: 18px; right: 22px;
  background: rgba(255,255,255,.10);
  border: none;
  color: #e9eef7;
  font-size: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.bm-lb-close:hover { background: rgba(255,255,255,.22); }
.bm-lb-prev, .bm-lb-next {
  background: rgba(255,255,255,.08);
  border: none;
  color: #e9eef7;
  font-size: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.bm-lb-prev:hover, .bm-lb-next:hover { background: rgba(255,255,255,.2); }
.bm-lb-counter {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; color: rgba(233,238,247,.5);
  font-family: ui-monospace, monospace;
  letter-spacing: .1em;
}

@media (max-width: 600px) {
  .bm-gallery { grid-template-columns: repeat(3, 1fr); }
  .bm-lb-prev, .bm-lb-next { width: 36px; height: 36px; font-size: 20px; }
}

/* ════════════════════════════════════════════════════════
   CUSTOM AUDIO PLAYER
════════════════════════════════════════════════════════ */
.bm-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0f121a 0%, #13101e 100%);
  border: 1px solid rgba(230,196,90,.22);
  border-radius: 10px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.bm-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(230,196,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.bm-player-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(230,196,90,.12);
  border: 1px solid rgba(230,196,90,.35);
  color: #e6c45a;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s, transform .1s;
}
.bm-player-btn:hover  { background: rgba(230,196,90,.22); border-color: #e6c45a; }
.bm-player-btn:active { transform: scale(.94); }
.bm-player-btn svg    { width: 16px; height: 16px; fill: currentColor; }
.bm-player-body { flex: 1; min-width: 0; }
.bm-player-title {
  font-size: 13px; font-weight: 700; color: #e9eef7;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 6px;
}
.bm-player-track-wrap {
  position: relative; height: 4px;
  background: rgba(255,255,255,.10); border-radius: 2px;
  cursor: pointer; margin-bottom: 5px;
}
.bm-player-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, #e6c45a, #f0bc84);
  width: 0%; pointer-events: none;
  transition: width .1s linear;
}
.bm-player-track-wrap::after {
  content: '';
  position: absolute;
  top: -6px; bottom: -6px; left: 0; right: 0;
}
.bm-player-times {
  display: flex; justify-content: space-between;
  font-family: ui-monospace, monospace; font-size: 10px;
  color: #97a5b6; letter-spacing: .05em;
}
.bm-player-vol {
  display: flex; align-items: center; flex-shrink: 0;
}
.bm-player-vol-input {
  -webkit-appearance: none;
  width: 70px; height: 3px;
  background: rgba(255,255,255,.15); border-radius: 2px;
  outline: none; cursor: pointer;
}
.bm-player-vol-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: #e6c45a; cursor: pointer;
}
.bm-player-vol-input::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #e6c45a; border: none; cursor: pointer;
}
@media (max-width: 500px) {
  .bm-player-vol { display: none; }
}

/* ── Floating now-playing bar ── */
#bm-np-fixed {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  display: none;
  background: #0b0d12;
  border-top: 1px solid rgba(230,196,90,.25);
  padding: 10px 20px;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
#bm-np-fixed.bm-np-visible { display: flex; }
.bm-np-fixed-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(230,196,90,.12);
  border: 1px solid rgba(230,196,90,.3);
  color: #e6c45a; font-size: 14px;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.bm-np-fixed-btn:hover { background: rgba(230,196,90,.22); }
.bm-np-fixed-info { flex: 1; min-width: 0; }
.bm-np-fixed-title { font-size: 12px; font-weight: 700; color: #e9eef7; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bm-np-fixed-sub   { font-size: 11px; color: #97a5b6; font-family: ui-monospace, monospace; }
.bm-np-fixed-progress { flex: 1; max-width: 240px; height: 3px; background: rgba(255,255,255,.10); border-radius: 2px; cursor: pointer; }
.bm-np-fixed-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg,#e6c45a,#f0bc84); width: 0%; pointer-events: none; transition: width .1s linear; }
.bm-np-fixed-close { background: none; border: none; color: #97a5b6; font-size: 18px; cursor: pointer; flex-shrink: 0; padding: 0 4px; }
.bm-np-fixed-close:hover { color: #e9eef7; }

/* ════════════════════════════════════════════════════════
   PROFILE PAGE LAYOUT
════════════════════════════════════════════════════════ */
.bm-profile-page {
  background: #0b0d12;
  color: #e9eef7;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.bm-profile-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bm-profile-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: saturate(1.05) brightness(.45);
}
.bm-profile-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,18,.1) 0%, rgba(11,13,18,.7) 60%, #0b0d12 100%);
}
.bm-profile-hero-inner {
  position: relative; z-index: 2;
  padding: 40px 40px 36px;
  width: 100%;
}
.bm-profile-hero-inner .bm-kicker { font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(230,196,90,.8); margin-bottom: 8px; }
.bm-profile-name { font-size: clamp(28px,5vw,56px); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; color: #e9eef7; margin: 0 0 12px; }
.bm-profile-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.bm-profile-tag { font-family: ui-monospace,monospace; font-size: 10px; letter-spacing: .10em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; border: 1px solid; }
.bm-profile-tag.genre  { color: #e6c45a; border-color: rgba(230,196,90,.3); background: rgba(230,196,90,.08); }
.bm-profile-tag.role   { color: #4fd1c5; border-color: rgba(79,209,197,.3); background: rgba(79,209,197,.08); }
.bm-profile-tag.region { color: #97a5b6; border-color: rgba(151,165,182,.25); background: rgba(151,165,182,.06); }
.bm-profile-tag.feat   { color: #b15cff; border-color: rgba(177,92,255,.3); background: rgba(177,92,255,.08); }
.bm-profile-body { max-width: 1100px; margin: 0 auto; padding: 32px 40px 80px; }
.bm-profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; margin-bottom: 20px; }
.bm-profile-card { background: #0f121a; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.bm-profile-card-head { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
.bm-profile-card-title { margin: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #97a5b6; }
.bm-profile-card-body  { padding: 16px; }
.bm-profile-bio { font-size: 15px; color: rgba(233,238,247,.85); line-height: 1.75; }
.bm-profile-bio p { margin: 0 0 12px; }
.bm-profile-bio p:last-child { margin: 0; }
.bm-social-links { display: flex; flex-direction: column; gap: 6px; }
.bm-social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  text-decoration: none; color: #e9eef7;
  font-size: 13px; font-weight: 600;
  transition: border-color .15s, background .15s;
}
.bm-social-link:hover { border-color: rgba(230,196,90,.3); background: rgba(230,196,90,.05); color: #e9eef7; text-decoration: none; }
.bm-social-link-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }
.bm-social-link-label { flex: 1; }
.bm-social-link-arrow { color: #97a5b6; font-size: 12px; }
.bm-embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.bm-embed-grid .bm-profile-card { }
.bm-embed-frame { width: 100%; display: block; }
.bm-booking-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  background: linear-gradient(135deg, #13101e 0%, #0f121a 100%);
  border: 1px solid rgba(177,92,255,.22); border-radius: 10px;
  padding: 20px 24px; margin-top: 8px;
}
.bm-booking-cta-text h3 { margin: 0 0 4px; font-size: 17px; color: #e9eef7; }
.bm-booking-cta-text p  { margin: 0; font-size: 13px; color: #97a5b6; }
.bm-booking-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 8px;
  border: 1px solid rgba(177,92,255,.4);
  background: rgba(177,92,255,.12); color: #e9eef7;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.bm-booking-cta-btn:hover { background: rgba(177,92,255,.22); border-color: rgba(177,92,255,.6); color: #e9eef7; text-decoration: none; }
@media (max-width: 900px) {
  .bm-profile-grid   { grid-template-columns: 1fr; }
  .bm-embed-grid     { grid-template-columns: 1fr; }
  .bm-profile-hero-inner { padding: 24px 20px 28px; }
  .bm-profile-body   { padding: 20px 16px 60px; }
}

/* ── Profile layout v2: right-sticky, left-bio ── */
.bm-profile-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: start;
}
.bm-profile-left  { min-width: 0; }
.bm-profile-right {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Collapsible bio */
.bm-bio-wrap { position: relative; }
.bm-bio-inner {
  max-height: 220px;
  overflow: hidden;
  transition: max-height .4s ease;
}
.bm-bio-inner.expanded { max-height: 9999px; }
.bm-bio-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(transparent, #0f121a);
  pointer-events: none;
  transition: opacity .3s;
}
.bm-bio-inner.expanded + .bm-bio-fade { opacity: 0; pointer-events: none; }
.bm-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 6px; color: #97a5b6;
  font-size: 12px; font-family: ui-monospace, monospace;
  letter-spacing: .08em; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.bm-read-more:hover { color: #e9eef7; border-color: rgba(255,255,255,.22); }

/* Excerpt tagline under hero name */
.bm-profile-excerpt {
  font-size: 15px;
  color: rgba(233,238,247,.7);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 8px;
  font-style: italic;
}

/* Contact button */
.bm-contact-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  border: 1px solid rgba(79,209,197,.3);
  background: rgba(79,209,197,.07);
  color: #4fd1c5; font-weight: 700; font-size: 13px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.bm-contact-btn:hover { background: rgba(79,209,197,.14); border-color: rgba(79,209,197,.5); color: #4fd1c5; text-decoration: none; }

@media (max-width: 860px) {
  .bm-profile-main { grid-template-columns: 1fr; }
  .bm-profile-right { position: static; }
}


/* ── Featured Sets shortcode ─────────────────────────────────────────────── */
.bm-fsets-card {
  background: #0f121a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  color: #e9eef7;
}
.bm-fsets-head {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.bm-fsets-heading {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #e9eef7;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bm-fsets-body { padding: 15px; }
.bm-fsets-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.bm-fsets-tab {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  color: #97a5b6;
  background: transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.bm-fsets-tab:hover { color: #e9eef7; border-color: rgba(255,255,255,.08); }
.bm-fsets-tab.active { color: #e6c45a; border-color: rgba(230,196,90,.3); background: rgba(230,196,90,.07); }
.bm-fsets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bm-fsets-item {
  background: #111522;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.bm-fsets-item:hover { border-color: rgba(230,196,90,.25); background: #131722; }
.bm-fsets-meta-row {
  padding: 10px 11px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.bm-fsets-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 11px 8px;
}
.bm-fsets-top .bm-fsets-meta-row {
  padding: 0;
  flex: 1;
  min-width: 0;
}
.bm-fsets-thumb,
.bm-fsets-thumb-placeholder {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, #151a27 0%, #1a1422 100%);
  color: rgba(230,196,90,.70);
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .02em;
}
.bm-fsets-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) brightness(.88);
  transition: filter .18s ease, transform .18s ease;
}
.bm-fsets-thumb:hover img { filter: saturate(1) brightness(.98); transform: scale(1.035); }
.bm-fsets-thumb-placeholder { text-transform: uppercase; }
.bm-fsets-artist { font-size: 13px; font-weight: 700; color: #e9eef7; margin: 0 0 2px; }
.bm-fsets-artist a { color: #e9eef7; text-decoration: none; }
.bm-fsets-artist a:hover { color: #e6c45a; text-decoration: none; }
.bm-fsets-title { font-size: 11px; color: #97a5b6; margin: 0; line-height: 1.35; }
.bm-fsets-chips { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.bm-fsets-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  color: #97a5b6;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  white-space: nowrap;
}
.bm-fsets-platform,
.bm-fsets-bpm { color: #e6c45a; border-color: rgba(230,196,90,.25); background: rgba(230,196,90,.07); }
.bm-fsets-genre { color: #4fd1c5; border-color: rgba(79,209,197,.25); background: rgba(79,209,197,.06); }
.bm-fsets-embed { display: block; width: 100%; border: 0; background: #090b10; }
.bm-fsets-bandcamp iframe { width: 100% !important; max-width: 100% !important; }
.bm-fsets-placeholder,
.bm-fsets-empty {
  min-height: 90px;
  background: rgba(230,196,90,.05);
  border: 1px dashed rgba(230,196,90,.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #97a5b6;
  font-size: 13px;
  line-height: 1.45;
  padding: 14px;
  text-align: center;
}
.bm-fsets-actions { padding: 10px 11px 11px; }
@media (max-width: 760px) {
  .bm-fsets-head { align-items: flex-start; flex-direction: column; }
  .bm-fsets-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .bm-fsets-top { gap: 8px; }
  .bm-fsets-thumb, .bm-fsets-thumb-placeholder { width: 58px; height: 58px; flex-basis: 58px; font-size: 20px; }
  .bm-fsets-chips { max-width: 84px; }
}

/* Featured Sets — click-to-load players. Keeps third-party embeds inert until user interaction. */
.bm-fsets-player-shell {
  min-height: 120px;
  background: #090b10;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px;
  text-align: center;
}
.bm-fsets-player-shell.bm-fsets-loaded { padding: 0; display: block; }
.bm-fsets-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(230,196,90,.32);
  background: rgba(230,196,90,.08);
  color: #e9eef7;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.bm-fsets-load:hover {
  background: rgba(230,196,90,.14);
  border-color: rgba(230,196,90,.48);
  transform: translateY(-1px);
}
.bm-fsets-load-icon {
  color: #e6c45a;
  font-size: 12px;
  line-height: 1;
}
.bm-fsets-load-note {
  color: #97a5b6;
  font-size: 11px;
  line-height: 1.35;
}

/* ════════════════════════════════════════════════════════
   Breathe Bottom Player — premium native audio mode
════════════════════════════════════════════════════════ */
.bm-fsets-native {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 10px 11px;
  background: linear-gradient(135deg, rgba(230,196,90,.045), rgba(177,92,255,.035));
}
.bm-player--featured-set { margin: 0; }
#bm-bottom-player {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 99990;
  display: none;
  color: #e9eef7;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border: 1px solid rgba(230,196,90,.28);
  border-radius: 14px;
  background:
    radial-gradient(900px 180px at 18% 0%, rgba(230,196,90,.13), transparent 58%),
    radial-gradient(700px 180px at 82% 0%, rgba(177,92,255,.14), transparent 62%),
    linear-gradient(180deg, rgba(15,18,26,.97), rgba(7,9,14,.98));
  box-shadow: 0 -14px 44px rgba(0,0,0,.60), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
#bm-bottom-player.bm-bp-visible { display: block; }
.bm-bp-compact {
  display: grid;
  grid-template-columns: 42px 46px minmax(130px, 1fr) minmax(110px, 180px) auto auto minmax(120px, 260px) minmax(92px, 128px) auto auto auto 28px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}
.bm-bp-play,
.bm-bp-expand,
.bm-bp-loop,
.bm-bp-close,
.bm-bp-reset {
  border: 1px solid rgba(230,196,90,.28);
  background: rgba(230,196,90,.08);
  color: #e9eef7;
  border-radius: 10px;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .12s ease;
}
.bm-bp-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #e6c45a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm-bp-play svg { width: 18px; height: 18px; fill: currentColor; }
.bm-bp-play:hover,
.bm-bp-expand:hover,
.bm-bp-loop:hover,
.bm-bp-close:hover,
.bm-bp-reset:hover { background: rgba(230,196,90,.15); border-color: rgba(230,196,90,.48); transform: translateY(-1px); }
.bm-bp-art {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(230,196,90,.16), rgba(177,92,255,.14));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230,196,90,.90);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 900;
}
.bm-bp-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm-bp-meta { min-width: 0; }
.bm-bp-title { color: #e9eef7; font-size: 13px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bm-bp-artist { color: #97a5b6; font-size: 11px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bm-bp-mini-viz {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  background: rgba(9,11,16,.72);
}
.bm-bp-loop,
.bm-bp-expand,
.bm-bp-reset {
  height: 32px;
  padding: 0 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.bm-bp-loop.active { color: #0b0d12; background: #e6c45a; border-color: #e6c45a; }
.bm-bp-time {
  display: flex;
  gap: 5px;
  color: #97a5b6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  white-space: nowrap;
}
.bm-bp-progress {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  cursor: pointer;
  overflow: hidden;
}
.bm-bp-progress::after { content: ''; position: absolute; inset: -10px 0; }
.bm-bp-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg,#4fd1c5,#e6c45a,#b15cff);
  box-shadow: 0 0 14px rgba(230,196,90,.28);
}
.bm-bp-volume {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #97a5b6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.bm-bp-volume input,
.bm-bp-eq input {
  -webkit-appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  outline: none;
  cursor: pointer;
}
.bm-bp-volume input { width: 76px; }
.bm-bp-volume input::-webkit-slider-thumb,
.bm-bp-eq input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e6c45a;
  border: 2px solid #0b0d12;
  box-shadow: 0 0 0 1px rgba(230,196,90,.45);
}
.bm-bp-volume input::-moz-range-thumb,
.bm-bp-eq input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e6c45a;
  border: 2px solid #0b0d12;
}
.bm-bp-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(177,92,255,.35);
  background: rgba(177,92,255,.12);
  color: #e9eef7;
  text-decoration: none;
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
}
.bm-bp-demo:hover { color: #e9eef7; background: rgba(177,92,255,.20); text-decoration: none; }
.bm-bp-close {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #97a5b6;
}
.bm-bp-panel {
  display: none;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 10px 12px 12px;
  background: rgba(0,0,0,.18);
}
#bm-bottom-player.bm-bp-expanded .bm-bp-panel { display: block; }
.bm-bp-viz {
  width: 100%;
  height: 150px;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(9,11,16,.72);
  margin-bottom: 10px;
}
.bm-bp-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
}
.bm-bp-eq {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  gap: 8px;
  align-items: center;
  color: #97a5b6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bm-bp-eq em {
  color: #e6c45a;
  font-style: normal;
  text-align: right;
}
@media (max-width: 980px) {
  .bm-bp-compact { grid-template-columns: 40px 42px minmax(100px,1fr) auto auto; }
  .bm-bp-mini-viz, .bm-bp-time, .bm-bp-volume, .bm-bp-demo { display: none; }
  .bm-bp-progress { grid-column: 1 / -1; }
  .bm-bp-controls { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  #bm-bottom-player { left: 8px; right: 8px; bottom: 8px; border-radius: 12px; }
  .bm-bp-compact { grid-template-columns: 38px 40px minmax(0,1fr) 38px 28px; gap: 8px; padding: 9px; }
  .bm-bp-loop { display: none; }
  .bm-bp-expand { width: 38px; padding: 0; }
  .bm-bp-controls { grid-template-columns: 1fr; }
  .bm-bp-eq { grid-template-columns: 52px 1fr 38px; }
  .bm-bp-viz { height: 110px; }
}


/* ════════════════════════════════════════════════════════
   v18.5 — Sharp Breathe Player skin: no card radii, high contrast.
   The only intentional rounding left is a tiny player-button radius.
════════════════════════════════════════════════════════ */
.bm-player,
.bm-player::before,
.bm-player-art,
.bm-player-track-wrap,
.bm-player-fill,
.bm-player-vol-input,
.bm-fsets-native,
.bm-fsets-player-shell,
.bm-fsets-load,
.bm-fsets-embed,
#bm-bottom-player,
#bm-bottom-player .bm-bp-art,
#bm-bottom-player .bm-bp-mini-viz,
#bm-bottom-player .bm-bp-viz,
#bm-bottom-player .bm-bp-progress,
#bm-bottom-player .bm-bp-progress-fill,
#bm-bottom-player .bm-bp-volume input,
#bm-bottom-player .bm-bp-eq input,
#bm-bottom-player .bm-bp-panel {
  border-radius: 0 !important;
}

.bm-player {
  position: relative;
  display: grid !important;
  grid-template-columns: 42px 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px !important;
  color: #eef4ff;
  background:
    linear-gradient(90deg, rgba(230,196,90,.16) 0, rgba(230,196,90,.16) 3px, transparent 3px),
    linear-gradient(135deg, #171d2a 0%, #0a0d14 52%, #15101d 100%) !important;
  border: 1px solid rgba(230,196,90,.42) !important;
  border-left-color: rgba(79,209,197,.72) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.bm-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 12px),
    radial-gradient(260px 80px at 0% 50%, rgba(79,209,197,.10), transparent 72%);
  pointer-events: none;
}
.bm-player > * { position: relative; z-index: 1; }
.bm-player audio { display: none !important; }
.bm-player-art {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #070910;
  color: #e6c45a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bm-player-art img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.92) contrast(1.05); }
.bm-player-btn,
.bm-bp-play,
.bm-bp-expand,
.bm-bp-loop,
.bm-bp-close,
.bm-bp-reset,
.bm-bp-demo,
.bm-fsets-load,
.bm-fsets-tab {
  border-radius: 2px !important;
}
.bm-player-btn {
  width: 42px !important;
  height: 42px !important;
  color: #071015 !important;
  background: linear-gradient(135deg, #4fd1c5, #e6c45a) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 0 0 1px rgba(230,196,90,.22), 0 8px 18px rgba(0,0,0,.28);
}
.bm-player-btn:hover { background: linear-gradient(135deg, #e6c45a, #b15cff) !important; border-color: rgba(230,196,90,.85) !important; }
.bm-player-kicker {
  margin: 0 0 3px;
  color: rgba(79,209,197,.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}
.bm-player-title { color: #f3f7ff !important; font-size: 13px !important; margin-bottom: 7px !important; }
.bm-player-track-wrap { height: 5px !important; background: rgba(255,255,255,.14) !important; }
.bm-player-fill { background: linear-gradient(90deg, #4fd1c5, #e6c45a, #b15cff) !important; box-shadow: 0 0 12px rgba(230,196,90,.28); }
.bm-player-times { color: rgba(233,238,247,.64) !important; }
.bm-player-vol-input { background: rgba(255,255,255,.18) !important; }
.bm-player-vol-input::-webkit-slider-thumb { border-radius: 2px !important; background: #4fd1c5 !important; border: 1px solid #081018 !important; }
.bm-player-vol-input::-moz-range-thumb { border-radius: 2px !important; background: #4fd1c5 !important; border: 1px solid #081018 !important; }

#bm-bottom-player {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-top: 1px solid rgba(230,196,90,.52) !important;
  background:
    linear-gradient(90deg, rgba(79,209,197,.10), transparent 22%, rgba(177,92,255,.10) 78%, rgba(230,196,90,.08)),
    linear-gradient(180deg, rgba(18,24,36,.985), rgba(5,7,12,.99)) !important;
  box-shadow: 0 -18px 48px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.07) !important;
}
#bm-bottom-player .bm-bp-play,
#bm-bottom-player .bm-bp-expand,
#bm-bottom-player .bm-bp-loop,
#bm-bottom-player .bm-bp-close,
#bm-bottom-player .bm-bp-reset {
  background: rgba(230,196,90,.11) !important;
  border-color: rgba(230,196,90,.44) !important;
}
#bm-bottom-player .bm-bp-play {
  color: #071015 !important;
  background: linear-gradient(135deg, #4fd1c5, #e6c45a) !important;
}
#bm-bottom-player .bm-bp-art,
#bm-bottom-player .bm-bp-mini-viz,
#bm-bottom-player .bm-bp-viz {
  background: rgba(3,5,10,.88) !important;
  border-color: rgba(255,255,255,.12) !important;
}
#bm-bottom-player .bm-bp-progress { background: rgba(255,255,255,.15) !important; }
#bm-bottom-player .bm-bp-progress-fill { background: linear-gradient(90deg,#4fd1c5,#e6c45a,#b15cff) !important; }
#bm-bottom-player .bm-bp-demo { background: rgba(177,92,255,.18) !important; border-color: rgba(177,92,255,.55) !important; }
#bm-bottom-player .bm-bp-demo:hover { background: rgba(177,92,255,.30) !important; }

@media (max-width: 760px) {
  .bm-player { grid-template-columns: 38px 38px minmax(0,1fr); }
  .bm-player-art, .bm-player-btn { width: 38px !important; height: 38px !important; }
  .bm-player-vol { display: none !important; }
  #bm-bottom-player .bm-bp-compact { grid-template-columns: 40px minmax(0,1fr) auto auto; gap: 8px; }
  #bm-bottom-player .bm-bp-art, #bm-bottom-player .bm-bp-mini-viz, #bm-bottom-player .bm-bp-time, #bm-bottom-player .bm-bp-volume, #bm-bottom-player .bm-bp-demo { display: none !important; }
}


/* ════════════════════════════════════════════════════════
   v18.6 — Featured-set trigger fix
   Native homepage sets are now sleek Play triggers, not embedded bottom bars.
════════════════════════════════════════════════════════ */
.bm-player--featured-trigger {
  grid-template-columns: auto minmax(0,1fr) 38px auto !important;
  padding: 9px 10px !important;
  min-height: 56px;
  background:
    linear-gradient(90deg, rgba(79,209,197,.18) 0, rgba(79,209,197,.18) 3px, transparent 3px),
    linear-gradient(135deg, #151b27 0%, #070a10 62%, #130f1a 100%) !important;
  border-color: rgba(79,209,197,.44) !important;
}
.bm-player--featured-trigger .bm-player-btn--text {
  width: auto !important;
  min-width: 82px !important;
  height: 36px !important;
  padding: 0 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.bm-player--featured-trigger .bm-player-btn-icon {
  font-size: 12px;
  line-height: 1;
}
.bm-player--featured-trigger .bm-player-art {
  width: 38px !important;
  height: 38px !important;
  order: 3;
}
.bm-player--featured-trigger .bm-player-body {
  min-width: 0;
}
.bm-player--featured-trigger .bm-player-kicker {
  color: rgba(230,196,90,.78) !important;
}
.bm-player--featured-trigger .bm-player-title {
  margin-bottom: 5px !important;
}
.bm-player--featured-trigger .bm-player-vol {
  order: 4;
}
.bm-fsets-load {
  min-height: 38px;
  min-width: 92px;
  padding: 0 15px !important;
  background: linear-gradient(135deg, rgba(79,209,197,.18), rgba(230,196,90,.16)) !important;
  border-color: rgba(79,209,197,.46) !important;
  color: #f3f7ff !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.bm-fsets-load:hover {
  background: linear-gradient(135deg, rgba(230,196,90,.22), rgba(177,92,255,.18)) !important;
  border-color: rgba(230,196,90,.62) !important;
}
.bm-fsets-load-note { display: none !important; }
.bm-fsets-player-shell {
  padding: 12px 11px !important;
}
@media (max-width: 760px) {
  .bm-player--featured-trigger {
    grid-template-columns: auto minmax(0,1fr) 34px !important;
  }
  .bm-player--featured-trigger .bm-player-vol { display: none !important; }
  .bm-player--featured-trigger .bm-player-btn--text { min-width: 74px !important; }
}

/* ════════════════════════════════════════════════════════
   v18.7 — Central Breathe player architecture + queue states
   One site-level player. Inline/profile/set cards are triggers.
════════════════════════════════════════════════════════ */
#bm-bottom-player {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  max-width: none !important;
}
#bm-bottom-player .bm-bp-compact {
  grid-template-columns: 34px 42px 34px 46px minmax(140px,1.15fr) minmax(120px,210px) auto minmax(70px,95px) minmax(120px,260px) minmax(92px,128px) 38px 38px minmax(96px,122px) 30px !important;
  gap: 9px !important;
}
#bm-bottom-player .bm-bp-prev,
#bm-bottom-player .bm-bp-next,
#bm-bottom-player .bm-bp-min,
#bm-bottom-player .bm-bp-play,
#bm-bottom-player .bm-bp-expand,
#bm-bottom-player .bm-bp-loop,
#bm-bottom-player .bm-bp-close,
#bm-bottom-player .bm-bp-reset,
#bm-bottom-player .bm-bp-demo {
  border-radius: 2px !important;
}
#bm-bottom-player .bm-bp-prev,
#bm-bottom-player .bm-bp-next,
#bm-bottom-player .bm-bp-min {
  height: 32px;
  min-width: 30px;
  border: 1px solid rgba(79,209,197,.36);
  background: rgba(79,209,197,.08);
  color: #e9eef7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .12s ease;
}
#bm-bottom-player .bm-bp-prev:hover,
#bm-bottom-player .bm-bp-next:hover,
#bm-bottom-player .bm-bp-min:hover {
  background: rgba(79,209,197,.16);
  border-color: rgba(79,209,197,.62);
  transform: translateY(-1px);
}
#bm-bottom-player .bm-bp-prev svg,
#bm-bottom-player .bm-bp-next svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
#bm-bottom-player .bm-bp-min {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-compact {
  grid-template-columns: 36px minmax(0,1fr) 36px 34px 30px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-prev,
#bm-bottom-player.bm-bp-minimized .bm-bp-next,
#bm-bottom-player.bm-bp-minimized .bm-bp-art,
#bm-bottom-player.bm-bp-minimized .bm-bp-mini-viz,
#bm-bottom-player.bm-bp-minimized .bm-bp-loop,
#bm-bottom-player.bm-bp-minimized .bm-bp-time,
#bm-bottom-player.bm-bp-minimized .bm-bp-progress,
#bm-bottom-player.bm-bp-minimized .bm-bp-volume,
#bm-bottom-player.bm-bp-minimized .bm-bp-expand,
#bm-bottom-player.bm-bp-minimized .bm-bp-demo,
#bm-bottom-player.bm-bp-minimized .bm-bp-panel {
  display: none !important;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-play {
  grid-column: 1;
  width: 34px !important;
  height: 34px !important;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-meta {
  grid-column: 2;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-min {
  grid-column: 3;
}
#bm-bottom-player.bm-bp-minimized .bm-bp-close {
  grid-column: 5;
}
#bm-bottom-player[data-state="expanded"] .bm-bp-panel {
  display: block;
}
.bm-player--featured-trigger .bm-player-vol,
.bm-player--featured-trigger .bm-player-times,
.bm-player--featured-trigger .bm-player-track-wrap {
  display: none !important;
}
.bm-player--featured-trigger {
  grid-template-columns: auto minmax(0,1fr) 38px !important;
}
.bm-player--featured-trigger .bm-player-body {
  padding-right: 4px;
}
.bm-player--featured-trigger .bm-player-kicker::after {
  content: ' · opens bottom player';
  color: rgba(151,165,182,.72);
  letter-spacing: .06em;
}
.bm-player--inline:not(.bm-player--featured-trigger) .bm-player-kicker::after,
.bm-player--auto-skinned .bm-player-kicker::after {
  content: ' · global deck';
  color: rgba(151,165,182,.65);
  letter-spacing: .06em;
}
#bm-bottom-player .bm-bp-viz {
  height: 180px !important;
}
@media (max-width: 1100px) {
  #bm-bottom-player .bm-bp-compact {
    grid-template-columns: 34px 40px 34px 42px minmax(100px,1fr) auto auto minmax(95px,180px) 36px 32px !important;
  }
  #bm-bottom-player .bm-bp-mini-viz,
  #bm-bottom-player .bm-bp-time,
  #bm-bottom-player .bm-bp-volume,
  #bm-bottom-player .bm-bp-demo { display: none !important; }
  #bm-bottom-player .bm-bp-progress { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  #bm-bottom-player .bm-bp-compact {
    grid-template-columns: 34px 40px 34px minmax(0,1fr) 36px 32px !important;
    gap: 7px !important;
  }
  #bm-bottom-player .bm-bp-art,
  #bm-bottom-player .bm-bp-loop { display: none !important; }
  #bm-bottom-player .bm-bp-controls { grid-template-columns: 1fr !important; }
  #bm-bottom-player .bm-bp-viz { height: 118px !important; }
}


/* ════════════════════════════════════════════════════════
   v18.8 — visible transport icons + next phase shortcuts
   Use real text glyphs, not fragile SVG/icon fonts.
════════════════════════════════════════════════════════ */
#bm-bottom-player .bm-bp-sr,
.bm-player .bm-bp-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#bm-bottom-player .bm-bp-icon,
.bm-player .bm-bp-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-indent: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: currentColor !important;
  text-shadow: 0 0 12px rgba(79,209,197,.28), 0 0 10px rgba(230,196,90,.18) !important;
  pointer-events: none !important;
}
#bm-bottom-player .bm-bp-prev,
#bm-bottom-player .bm-bp-play,
#bm-bottom-player .bm-bp-next {
  color: #f7f1d0 !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  overflow: hidden !important;
}
#bm-bottom-player .bm-bp-prev .bm-bp-icon,
#bm-bottom-player .bm-bp-next .bm-bp-icon {
  font-size: 15px !important;
  letter-spacing: 0 !important;
  transform: translateY(-.5px) !important;
}
#bm-bottom-player .bm-bp-play .bm-bp-icon {
  font-size: 19px !important;
  transform: translateY(-.5px) !important;
}
#bm-bottom-player .bm-bp-play .bm-bp-icon-pause {
  font-size: 17px !important;
  letter-spacing: -3px !important;
  transform: translate(-1.5px,-.5px) !important;
}
#bm-bottom-player .bm-bp-prev svg,
#bm-bottom-player .bm-bp-play svg,
#bm-bottom-player .bm-bp-next svg,
.bm-player .bm-player-btn svg {
  display: none !important;
}
#bm-bottom-player .bm-bp-prev,
#bm-bottom-player .bm-bp-next {
  background: rgba(79,209,197,.10) !important;
  border-color: rgba(79,209,197,.55) !important;
  box-shadow: inset 0 0 0 1px rgba(79,209,197,.08), 0 0 18px rgba(79,209,197,.08) !important;
}
#bm-bottom-player .bm-bp-play {
  background: linear-gradient(135deg, rgba(79,209,197,.30), rgba(230,196,90,.24)) !important;
  border-color: rgba(230,196,90,.72) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 24px rgba(230,196,90,.16) !important;
}
#bm-bottom-player .bm-bp-prev:hover,
#bm-bottom-player .bm-bp-next:hover,
#bm-bottom-player .bm-bp-play:hover {
  color: #ffffff !important;
  filter: brightness(1.08) !important;
}
.bm-player .bm-player-btn {
  color: #f7f1d0 !important;
  text-indent: 0 !important;
  font-size: 0 !important;
}
.bm-player .bm-player-btn .bm-bp-icon {
  font-size: 16px !important;
}
.bm-player .bm-player-btn--text {
  font-size: 12px !important;
}
.bm-player .bm-player-btn--text .bm-player-btn-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 7px !important;
  color: #f7f1d0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-indent: 0 !important;
}
#bm-bottom-player::after {
  content: 'SPACE play/pause · ←/→ seek · ↑/↓ volume · L loop · E expand' !important;
  display: block !important;
  padding: 0 12px 8px !important;
  color: rgba(151,165,182,.58) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: 9px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
#bm-bottom-player.bm-bp-minimized::after,
#bm-bottom-player:not(.bm-bp-visible)::after {
  display: none !important;
}
@media (max-width: 760px) {
  #bm-bottom-player::after { display: none !important; }
}

/* ── v18.11 Persistent audio shell refinements ───────────────────────── */
html.bm-pjax-loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2147483647;
  background: linear-gradient(90deg, #4fd1c5, #e6c45a, #b15cff, #4fd1c5);
  background-size: 220% 100%;
  animation: bm-pjax-load 0.9s linear infinite;
}
@keyframes bm-pjax-load {
  from { background-position: 0 0; }
  to { background-position: 220% 0; }
}
#bm-bottom-player .bm-bp-external {
  display: none;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #080a0f;
  padding: 10px 12px 12px;
}
#bm-bottom-player.bm-bp-external-active .bm-bp-external:not([hidden]) {
  display: block;
}
#bm-bottom-player .bm-bp-external-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #97a5b6;
}
#bm-bottom-player .bm-bp-external-head strong {
  color: #e6c45a;
  font-weight: 800;
}
#bm-bottom-player .bm-bp-external-frame {
  display: block;
  width: 100%;
  border: 0;
  background: #05060a;
}
#bm-bottom-player.bm-bp-external-active .bm-bp-panel {
  display: none !important;
}
#bm-bottom-player.bm-bp-external-active .bm-bp-loop,
#bm-bottom-player.bm-bp-external-active .bm-bp-volume,
#bm-bottom-player.bm-bp-external-active .bm-bp-progress,
#bm-bottom-player.bm-bp-external-active .bm-bp-time,
#bm-bottom-player.bm-bp-external-active .bm-bp-mini-viz,
#bm-bottom-player.bm-bp-external-active .bm-bp-expand {
  opacity: .38;
  pointer-events: none;
}
.bm-fsets-load--playing {
  border-color: rgba(79,209,197,.65) !important;
  background: rgba(79,209,197,.13) !important;
  color: #e9eef7 !important;
}
body.bm-persistent-player-active {
  padding-bottom: 96px;
}
