:root{
  --bg:#0A0A0F;
  --surface:#13131C;
  --surface-2:#1C1C2A;
  --sidebar:#0d0d18;
  --border:rgba(255,255,255,0.05);
  --border-strong:rgba(124,58,237,0.2);
  --text:#F0EEFF;
  --muted:rgba(240,238,255,0.5);
  --muted-2:rgba(240,238,255,0.35);
  --muted-3:rgba(240,238,255,0.25);
  --violet:#7C3AED;
  --violet-2:#A78BFA;
  --pink:#EC4899;
  --danger:#F87171;
  --success:#4ADE80;
  --warning:#FCD34D;
  --topnav:linear-gradient(135deg,#2D1B5A,#1A0A3A);
  --shadow:0 8px 24px rgba(0,0,0,.5);
  --scrollbar-size:10px;
  --scrollbar-track:rgba(9,10,18,.28);
  --scrollbar-track-strong:rgba(13,14,24,.44);
  --scrollbar-thumb:rgba(90,61,154,.62);
  --scrollbar-thumb-hover:rgba(122,88,198,.78);
  --scrollbar-thumb-active:rgba(154,122,236,.9);
  --scrollbar-edge:rgba(255,255,255,.05);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;background:var(--bg);color:var(--text);font-family:'DM Sans',sans-serif;font-size:14px}
body{overflow:hidden}
a{color:inherit}
button,input,textarea,select{font:inherit}
img{display:block;max-width:100%}

html,
body,
.sidebar,
.content,
.playlist-main-column,
.playlist-rail,
.chart-list,
.playlist-choice-list,
.playlist-panel-body,
textarea{
  scrollbar-width:thin;
  scrollbar-color:var(--scrollbar-thumb) var(--scrollbar-track)
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.sidebar::-webkit-scrollbar,
.content::-webkit-scrollbar,
.playlist-main-column::-webkit-scrollbar,
.playlist-rail::-webkit-scrollbar,
.chart-list::-webkit-scrollbar,
.playlist-choice-list::-webkit-scrollbar,
.playlist-panel-body::-webkit-scrollbar,
textarea::-webkit-scrollbar{
  width:var(--scrollbar-size);
  height:var(--scrollbar-size)
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.sidebar::-webkit-scrollbar-track,
.content::-webkit-scrollbar-track,
.playlist-main-column::-webkit-scrollbar-track,
.playlist-rail::-webkit-scrollbar-track,
.chart-list::-webkit-scrollbar-track,
.playlist-choice-list::-webkit-scrollbar-track,
.playlist-panel-body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track{
  background:linear-gradient(180deg,var(--scrollbar-track),var(--scrollbar-track-strong));
  border-radius:999px
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb,
.playlist-main-column::-webkit-scrollbar-thumb,
.playlist-rail::-webkit-scrollbar-thumb,
.chart-list::-webkit-scrollbar-thumb,
.playlist-choice-list::-webkit-scrollbar-thumb,
.playlist-panel-body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,var(--scrollbar-thumb),rgba(58,40,106,.9));
  border:2px solid transparent;
  border-radius:999px;
  background-clip:padding-box;
  min-height:36px
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.sidebar::-webkit-scrollbar-thumb:hover,
.content::-webkit-scrollbar-thumb:hover,
.playlist-main-column::-webkit-scrollbar-thumb:hover,
.playlist-rail::-webkit-scrollbar-thumb:hover,
.chart-list::-webkit-scrollbar-thumb:hover,
.playlist-choice-list::-webkit-scrollbar-thumb:hover,
.playlist-panel-body::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,var(--scrollbar-thumb-hover),rgba(84,58,146,.96))
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active,
.sidebar::-webkit-scrollbar-thumb:active,
.content::-webkit-scrollbar-thumb:active,
.playlist-main-column::-webkit-scrollbar-thumb:active,
.playlist-rail::-webkit-scrollbar-thumb:active,
.chart-list::-webkit-scrollbar-thumb:active,
.playlist-choice-list::-webkit-scrollbar-thumb:active,
.playlist-panel-body::-webkit-scrollbar-thumb:active,
textarea::-webkit-scrollbar-thumb:active{
  background:linear-gradient(180deg,var(--scrollbar-thumb-active),rgba(108,78,182,.98))
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
.sidebar::-webkit-scrollbar-corner,
.content::-webkit-scrollbar-corner,
.playlist-main-column::-webkit-scrollbar-corner,
.playlist-rail::-webkit-scrollbar-corner,
.chart-list::-webkit-scrollbar-corner,
.playlist-choice-list::-webkit-scrollbar-corner,
.playlist-panel-body::-webkit-scrollbar-corner,
textarea::-webkit-scrollbar-corner{
  background:transparent
}

.topnav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:var(--topnav);border-bottom:1px solid rgba(124,58,237,.3);
  height:48px;display:flex;align-items:center;padding:0 1.5rem;justify-content:space-between;gap:1rem
}
.brand{display:flex;align-items:center;gap:8px;text-decoration:none;min-width:0}
.logo{
  width:26px;height:26px;background:var(--violet);border-radius:5px;display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;font-size:13px;color:#fff;flex-shrink:0
}
.bname{font-family:'Bebas Neue',sans-serif;font-size:15px;letter-spacing:1px;color:#fff;white-space:nowrap}
.tnav{display:flex;gap:1.5rem;align-items:center;min-width:0}
.tnav a,.tnav button{
  font-size:12px;color:var(--muted);text-decoration:none;transition:color .15s;background:none;border:none;cursor:pointer
}
.tnav a:hover,.tnav button:hover,.tnav a.active,.tnav button.active{color:#fff}
.tnav a.active,.tnav button.active{border-bottom:1.5px solid var(--violet-2);padding-bottom:1px}
.tright{display:flex;gap:8px;align-items:center}
.tb{
  font-size:12px;padding:5px 14px;border-radius:6px;border:1px solid rgba(255,255,255,.15);background:transparent;color:rgba(240,238,255,.6);
  cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .15s;text-decoration:none;display:inline-flex;align-items:center;justify-content:center
}
.tb:hover{border-color:rgba(255,255,255,.3);color:#fff}
.tb.p{background:var(--violet);border-color:var(--violet);color:#fff}
.tb.p:hover{background:#6D28D9}

.layout{display:flex;position:fixed;top:48px;bottom:72px;left:0;right:0}
.sidebar{
  width:268px;flex-shrink:0;background:var(--sidebar);border-right:1px solid var(--border);
  display:flex;flex-direction:column;overflow-y:auto;padding:1rem 0;scrollbar-gutter:stable
}
.playlist-layout .sidebar{width:var(--playlist-left-width,392px)}
.sb-sec{padding:0 1rem;margin-bottom:1.25rem}
.sb-nav{display:flex;flex-direction:column;gap:2px}
.sb-item{
  display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:8px;font-size:13px;color:var(--muted);cursor:pointer;
  text-decoration:none;transition:all .15s;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;border:none;background:none;text-align:left
}
.sb-item:hover{color:var(--text);background:rgba(255,255,255,.05)}
.sb-item.active{color:var(--text);background:rgba(124,58,237,.15)}
.sb-item svg{width:18px;height:18px;fill:currentColor;flex-shrink:0}
.sb-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--muted-3);padding:0 10px;margin-bottom:6px}
.sb-div{height:1px;background:var(--border);margin:.75rem 1rem}
.pl-box{margin:0 1rem;padding:12px;background:rgba(124,58,237,.08);border:1px solid rgba(124,58,237,.15);border-radius:10px}
.pl-box-t{font-size:13px;font-weight:500;color:var(--text);margin-bottom:4px}
.pl-box-tx{font-size:11px;color:rgba(240,238,255,.4);line-height:1.5;margin-bottom:10px}
.pl-box-btn{
  font-size:11px;padding:5px 12px;border-radius:6px;border:1px solid rgba(255,255,255,.2);background:transparent;color:var(--text);cursor:pointer;
  transition:all .15s
}
.pl-box-btn:hover{background:rgba(255,255,255,.08)}

.content{flex:1;overflow-y:auto;padding:0;scrollbar-gutter:stable}
.content.playlist-content{overflow:hidden}
.padded{padding:2rem 2.5rem}

.page-shell{display:flex;flex-direction:column;min-height:100%}
.page-block{margin-bottom:2.5rem}
.sec-hdr,.related-hdr,.tracklist-header,.disco-hdr,.section-head-row{
  display:flex;align-items:baseline;justify-content:space-between;gap:1rem;margin-bottom:1.25rem
}
.sec-eyebrow,.eyebrow,.sec-label,.page-eyebrow{
  font-size:10px;letter-spacing:2.5px;text-transform:uppercase;color:var(--violet-2);font-weight:500;margin-bottom:4px
}
.sec-title,.related-title,.disco-title,.section-title-main{font-size:17px;font-weight:500;color:var(--text)}
.sec-sub{font-size:12px;color:rgba(240,238,255,.3)}
.sec-link,.see-all,.nav-btn,.chip-link{
  font-size:12px;color:var(--muted-2);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  padding:4px 14px;border-radius:6px;cursor:pointer;text-decoration:none;transition:all .15s;display:inline-flex;align-items:center;justify-content:center
}
.sec-link:hover,.see-all:hover,.nav-btn:hover,.chip-link:hover{color:var(--violet-2);border-color:rgba(124,58,237,.3)}

.hero{
  position:relative;overflow:hidden;display:flex;align-items:flex-end;flex-shrink:0;
  background:linear-gradient(135deg,#0d0518 0%,#1a0535 40%,#0a0a1f 100%)
}
.hero-bg-img{position:absolute;inset:0;opacity:.25;filter:saturate(1.2);background-position:center;background-size:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,#0A0A0F 0%,rgba(10,10,15,.7) 40%,rgba(10,10,15,.2) 100%)}
.hero-ambient{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%,rgba(124,58,237,.2),transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 40%,rgba(236,72,153,.08),transparent 50%)
}
.hero-content{position:relative;z-index:2;padding:2.5rem;display:flex;align-items:flex-end;gap:1.5rem;width:100%}
.hero-badge,.artist-tag,.coming-badge{
  display:inline-flex;align-items:center;gap:6px;font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--pink);margin-bottom:10px
}
.hero-dot,.coming-dot,.artist-dot{
  width:5px;height:5px;background:var(--pink);border-radius:50%;animation:pulse 2s infinite
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
.hero-title,.hero-name,.album-title,.track-title,.page-title{
  font-family:'Bebas Neue',sans-serif;letter-spacing:1px;color:#fff;line-height:.95
}
.hero-title{font-size:clamp(28px,4vw,52px);margin-bottom:8px}
.hero-subtitle,.hero-desc{font-size:13px;color:rgba(240,238,255,.55);margin-bottom:1.5rem;font-weight:300;line-height:1.6;max-width:680px}
.hero-btns,.hero-actions,.album-actions,.action-bar{display:flex;gap:10px;flex-wrap:wrap}

.btn-hero-primary,.btn-primary,.btn-play-inline,.btn-listen{
  font-size:12px;padding:9px 20px;border-radius:8px;background:var(--violet);border:1px solid var(--violet);color:#fff;cursor:pointer;
  font-family:'DM Sans',sans-serif;font-weight:500;transition:background .2s;text-decoration:none;display:inline-flex;align-items:center;gap:6px
}
.btn-hero-primary:hover,.btn-primary:hover,.btn-play-inline:hover,.btn-listen:hover{background:#6D28D9}
.btn-hero-secondary,.btn-secondary,.btn-follow,.btn-add{
  font-size:12px;padding:9px 18px;border-radius:8px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.2);
  color:var(--text);cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:6px
}
.btn-hero-secondary:hover,.btn-secondary:hover,.btn-follow:hover,.btn-add:hover{background:rgba(255,255,255,.12)}
.btn-like{background:rgba(239,68,68,.1);color:var(--danger);border:1px solid rgba(239,68,68,.2)}
.btn-like:hover{background:rgba(239,68,68,.2)}
.btn-warning{background:rgba(245,158,11,.1);color:var(--warning);border:1px solid rgba(245,158,11,.2)}
.btn-warning:hover{background:rgba(245,158,11,.2)}
.btn-danger:hover{color:var(--danger);border-color:rgba(248,113,113,.3);background:rgba(248,113,113,.06)}
.btn-icon{
  width:36px;height:36px;border-radius:50%;background:transparent;border:1px solid rgba(255,255,255,.2);color:var(--muted);
  font-size:16px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;transition:all .15s
}
.btn-icon:hover{border-color:rgba(255,255,255,.5);color:var(--text)}

.home-hero{height:380px}
.artist-hero{height:300px}
.artist-avatar{
  width:90px;height:90px;border-radius:50%;flex-shrink:0;background:linear-gradient(135deg,#1a0535,#5a1a9a);
  border:3px solid rgba(124,58,237,.4);overflow:hidden
}
.artist-avatar img{width:100%;height:100%;object-fit:cover}
.hero-info{flex:1;min-width:0}
.hero-stack{position:absolute;right:2.5rem;bottom:2.5rem;z-index:2;display:flex;align-items:flex-end;gap:-8px}
.hero-stack-img{
  width:90px;height:90px;border-radius:10px;border:2px solid rgba(124,58,237,.4);object-fit:cover;background:var(--surface);
  box-shadow:var(--shadow)
}
.hero-stack-img:nth-child(2){transform:rotate(6deg) translateX(-10px);opacity:.7;z-index:-1}
.hero-stack-img:nth-child(3){transform:rotate(12deg) translateX(-20px);opacity:.4;z-index:-2}

.breadcrumb{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--muted-2);margin-bottom:1.75rem;flex-wrap:wrap}
.breadcrumb a{color:var(--muted-2);text-decoration:none;transition:color .15s}
.breadcrumb a:hover{color:var(--violet-2)}
.breadcrumb span{opacity:.4}

.metrics-grid,.social-grid,.landmarks-grid,.related-grid,.catalog-grid,.artists-grid,.release-grid,.tracks-grid,.more-grid,.coming-grid{
  display:grid;gap:14px
}
.metrics-grid{grid-template-columns:repeat(4,1fr)}
.social-grid{grid-template-columns:repeat(3,1fr)}
.landmarks-grid{grid-template-columns:repeat(4,1fr)}
.artists-grid{grid-template-columns:repeat(3,1fr)}
.release-grid{grid-template-columns:repeat(6,1fr)}
.catalog-grid{grid-template-columns:repeat(6,1fr)}
.tracks-grid{grid-template-columns:repeat(3,1fr)}
.related-grid{grid-template-columns:repeat(4,1fr)}
.more-grid{grid-template-columns:repeat(3,1fr)}
.coming-grid{grid-template-columns:repeat(2,1fr)}

.metric-card,.social-card,.art-card,.coming-card,.section-card,.video-card,.details-card,.identity-card,.account-card{
  background:var(--surface);border:1px solid rgba(124,58,237,.12);border-radius:12px;overflow:hidden
}
.metric-card,.social-card,.art-card,.coming-card{transition:all .2s}
.metric-card:hover,.social-card:hover,.art-card:hover,.coming-card:hover{border-color:rgba(124,58,237,.35);background:var(--surface-2)}

.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:2rem}
.stat-card{
  background:var(--surface);border:1px solid rgba(124,58,237,.12);border-radius:12px;padding:1rem
}
.stat-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--muted-3);margin-bottom:.5rem}
.stat-value{font-family:'Bebas Neue',sans-serif;font-size:28px;letter-spacing:1px;color:var(--violet-2);line-height:1}
.stat-help{font-size:12px;color:var(--muted-2);margin-top:.5rem;line-height:1.5}

.release-card,.rel-card,.disco-card,.lm-card,.track-card{cursor:pointer;text-decoration:none;display:block}
.release-card:hover .cover-img,.rel-card:hover .rel-img,.disco-card:hover .disco-img,.lm-card:hover .lm-img,.track-card:hover .track-card-cover{opacity:.82}
.cover-img,.rel-img,.disco-img,.lm-img,.track-card-cover,.coming-img,.social-img,.art-img,.more-img,.hero-cover,.album-art img,.track-cover{
  background:linear-gradient(135deg,#1a0535,#5a1a9a);object-fit:cover
}
.cover-img,.rel-img,.disco-img,.lm-img{width:100%;aspect-ratio:1/1;border-radius:8px;margin-bottom:8px;transition:opacity .15s}
.release-card--playable{
  background:var(--surface);
  border:1px solid rgba(124,58,237,.12);
  border-radius:12px;
  overflow:hidden;
  transition:all .2s
}
.release-card--playable:hover{
  border-color:rgba(124,58,237,.4);
  transform:translateY(-2px)
}
.release-card--playable:hover .cover-img{opacity:.82}
.release-card--playable:hover .play-chip{opacity:1}
.release-card-cover-wrap{position:relative;overflow:hidden}
.release-card-cover-link{display:block;text-decoration:none}
.release-card--playable .cover-img{margin-bottom:0;border-radius:0}
.release-card-body{padding:12px}
.release-card-title-link{text-decoration:none;display:block}
.release-card-title-link:hover .release-card-title{color:var(--violet-2)}
.track-card-cover{width:100%;aspect-ratio:1/1;border-radius:10px;transition:opacity .15s}
.release-card-title,.rel-title,.disco-title-sm,.lm-title,.track-card-title{font-size:12px;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:2px}
.release-card-meta,.rel-meta,.disco-meta,.lm-meta,.track-card-meta{font-size:11px;color:var(--muted-2);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.track-card{background:var(--surface);border:1px solid rgba(124,58,237,.12);border-radius:12px;overflow:hidden;transition:all .2s}
.track-card:hover{border-color:rgba(124,58,237,.4);transform:translateY(-2px)}
.track-card-body{padding:12px}
.track-card-kicker{font-size:10px;color:rgba(240,238,255,.3);margin-bottom:3px;text-transform:uppercase;letter-spacing:1px}
.track-card-line{font-size:11px;color:var(--violet-2);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.track-card-title-link,.track-card-release-link{text-decoration:none;display:block}
.track-card-title-link:hover{color:var(--violet-2)}
.track-card-release-link:hover{color:#fff}
.track-card-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.track-card-action{
  display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;border:1px solid rgba(124,58,237,.22);
  background:rgba(124,58,237,.1);font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--violet-2);text-decoration:none;
  transition:border-color .18s,background .18s,color .18s
}
.track-card-action:hover{background:rgba(124,58,237,.18);border-color:rgba(124,58,237,.4);color:#fff}
.track-card-action--ghost{
  background:rgba(255,255,255,.03);border-color:rgba(255,255,255,.08);color:rgba(240,238,255,.62)
}
.track-card-action--ghost:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.16);color:#fff}
.track-card-cover-wrap{position:relative;overflow:hidden}
.play-chip{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:42px;height:42px;border-radius:50%;
  background:rgba(124,58,237,.88);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s
}
.track-card:hover .play-chip{opacity:1}
.play-chip svg{width:14px;height:14px;fill:#fff;margin-left:2px}

.coming-card{display:flex;gap:1rem;padding:1rem;text-decoration:none}
.coming-img{width:70px;height:70px;border-radius:8px;flex-shrink:0}
.coming-meta,.social-platform,.kt-release-type,.rel-type,.release-card-kicker{font-size:10px;color:var(--muted-2);letter-spacing:1px;text-transform:uppercase}
.coming-title,.social-title,.art-name,.more-name{font-size:14px;font-weight:500;color:var(--text)}
.coming-artist,.social-artist,.track-line-artist,.rel-artist,.lm-artist{font-size:12px;color:var(--violet-2)}
.social-card,.art-card{display:flex;gap:1rem;padding:1rem;text-decoration:none}
.social-img{width:60px;height:60px;border-radius:8px;flex-shrink:0}
.social-metric{font-family:'Bebas Neue',sans-serif;font-size:20px;letter-spacing:1px;color:var(--violet-2);margin-bottom:2px}
.art-img{width:64px;height:64px;border-radius:50%;flex-shrink:0;border:2px solid rgba(124,58,237,.25)}
.art-desc{font-size:11px;color:rgba(240,238,255,.4);line-height:1.5;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}

.tabs{
  display:flex;flex-wrap:wrap;gap:10px;margin-bottom:2rem;padding:10px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.07);border-radius:18px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.02)
}
.tab{
  appearance:none;-webkit-appearance:none;background:transparent;box-shadow:none;margin:0;
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;
  font-family:inherit;font-size:13px;font-weight:500;line-height:1.1;letter-spacing:.01em;
  color:rgba(240,238,255,.56);padding:10px 16px;cursor:pointer;border:1px solid transparent;border-radius:999px;
  transition:color .2s,background .2s,border-color .2s,box-shadow .2s,transform .2s
}
.tab:hover{
  color:var(--text);background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.12)
}
.tab:focus-visible{
  outline:2px solid rgba(167,139,250,.65);outline-offset:2px
}
.tab.active{
  color:#fff;background:linear-gradient(180deg,rgba(124,58,237,.18),rgba(124,58,237,.12));
  border-color:rgba(124,58,237,.34);box-shadow:0 10px 24px rgba(76,29,149,.18)
}
.tab:disabled{
  opacity:.45;cursor:not-allowed;pointer-events:none
}
.tab-panel{display:none}
.tab-panel.active{display:block}
.disco-filters,.filter-row{display:flex;gap:6px;margin-bottom:1.5rem;flex-wrap:wrap}
.disco-btn,.filter-btn{
  font-size:12px;padding:6px 16px;border-radius:99px;border:1px solid rgba(255,255,255,.1);background:transparent;color:rgba(240,238,255,.5);cursor:pointer;transition:all .2s
}
.disco-btn:hover,.filter-btn:hover{color:var(--text);border-color:rgba(255,255,255,.25)}
.disco-btn.active,.filter-btn.active{background:rgba(124,58,237,.15);border-color:var(--violet);color:var(--violet-2)}

.album-hero,.release-hero{display:flex;gap:2rem;align-items:flex-end;margin-bottom:2rem}
.album-cover,.hero-cover{
  width:220px;height:220px;border-radius:10px;flex-shrink:0;background:linear-gradient(135deg,#1a0535,#5a1a9a);
  display:flex;flex-direction:column;align-items:center;justify-content:center;font-family:'Bebas Neue',sans-serif;font-size:22px;letter-spacing:2px;color:#fff;text-align:center;padding:16px;line-height:1.2
}
.album-cover span{font-size:12px;letter-spacing:3px;color:rgba(240,238,255,.5);margin-top:8px}
.album-info,.release-info{min-width:0}
.album-title{font-size:56px;margin-bottom:14px}
.album-artist-row{display:flex;align-items:center;gap:8px;margin-bottom:8px}
.artist-dot-small{width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,#4C1D95,#7C3AED);flex-shrink:0}
.album-artist{font-size:14px;color:var(--violet-2);font-weight:500}
.album-meta,.release-meta{font-size:13px;color:rgba(240,238,255,.4);margin-bottom:22px;display:flex;flex-wrap:wrap;gap:.35rem}
.album-meta span+span::before,.release-meta span+span::before{content:'|';opacity:.4;margin-right:.35rem}

.tracklist{margin-bottom:1.5rem}
.tl-header{
  display:grid;grid-template-columns:52px 1fr 160px 74px 32px;gap:8px;padding:0 10px 8px;border-bottom:1px solid rgba(255,255,255,.07);margin-bottom:4px
}
.tl-header span{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:rgba(240,238,255,.25)}
.tl-row{
  display:grid;grid-template-columns:52px 1fr 160px 74px 32px;gap:8px;align-items:center;padding:7px 10px;border-radius:8px;transition:background .15s
}
.tl-row:hover{background:rgba(124,58,237,.08)}
.tl-row.active,.tl-row.playing{background:rgba(124,58,237,.15)}
.tl-cell-play{display:flex;align-items:center;justify-content:center;gap:6px}
.tl-btn{
  width:30px;height:30px;border-radius:50%;background:transparent;border:none;color:rgba(240,238,255,.35);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s
}
.tl-btn:hover{color:#fff;background:rgba(255,255,255,.06)}
.tl-btn svg{width:14px;height:14px;fill:currentColor;margin-left:2px}
.tl-num{font-size:13px;color:rgba(240,238,255,.3);text-align:center;min-width:12px}
.tl-row.playing .tl-num,.tl-row.active .tl-num{color:var(--violet)}
.tl-info{display:flex;align-items:center;gap:10px;min-width:0}
.tl-img{width:36px;height:36px;border-radius:5px;flex-shrink:0}
.tl-name{font-size:13px;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}
.tl-row.playing .tl-name,.tl-row.active .tl-name{color:var(--violet-2)}
.tl-artist,.tl-release{font-size:12px;color:rgba(240,238,255,.4);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tl-duration{font-size:12px;color:rgba(240,238,255,.35);text-align:right}
.tl-like{font-size:14px;color:rgba(240,238,255,0);cursor:pointer;border:none;background:transparent;text-align:center;width:28px;transition:color .15s}
.tl-row:hover .tl-like{color:rgba(240,238,255,.4)}
.tl-like:hover{color:var(--pink)!important}
.copyright{font-size:11px;color:rgba(240,238,255,.2);margin-bottom:2.5rem;padding:0 10px}

.hero-card{
  background:var(--surface);border:1px solid rgba(124,58,237,.2);border-radius:16px;padding:2rem;
  display:grid;grid-template-columns:1fr auto;gap:2rem;margin-bottom:1.5rem;position:relative;overflow:hidden
}
.hero-card::before{
  content:'';position:absolute;top:-60px;left:40%;width:220px;height:220px;background:radial-gradient(circle,rgba(124,58,237,.1),transparent 70%);
  border-radius:50%;pointer-events:none
}
.hero-left{min-width:0}
.hero-right{display:flex;flex-direction:column;gap:1.25rem;align-items:flex-end;flex-shrink:0}
.track-title{font-size:clamp(30px,4vw,50px);margin-bottom:1.5rem}
.track-title em{color:var(--violet-2);font-style:normal}
.tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:1.25rem}
.tag{
  padding:4px 12px;border-radius:99px;font-size:11px;letter-spacing:1px;font-weight:500;text-transform:uppercase;
  background:rgba(124,58,237,.12);color:var(--violet-2);border:1px solid rgba(124,58,237,.2)
}
.release-ref{font-size:13px;color:rgba(240,238,255,.4);margin-bottom:1.5rem}
.release-ref a{color:var(--violet-2);text-decoration:none}
.release-ref a:hover{text-decoration:underline}
.btn-view{
  display:inline-flex;padding:9px 20px;background:transparent;color:var(--violet-2);border:1px solid var(--violet);
  border-radius:8px;font-size:12px;font-weight:500;cursor:pointer;transition:all .2s;text-decoration:none
}
.btn-view:hover{background:rgba(124,58,237,.12)}
.album-art{
  width:190px;height:190px;border-radius:12px;border:1px solid rgba(124,58,237,.2);overflow:hidden;flex-shrink:0;position:relative;background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.neon-ring{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:150px;height:150px;border-radius:50%;
  border:1px solid rgba(124,58,237,.2);animation:spin 8s linear infinite;pointer-events:none
}
.neon-ring::after{content:'';position:absolute;top:-3px;left:40%;width:6px;height:6px;background:var(--violet-2);border-radius:50%}
@keyframes spin{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}
.details-card{width:190px;background:var(--surface-2);padding:1.25rem}
.details-title{font-family:'Bebas Neue',sans-serif;font-size:16px;letter-spacing:1.5px;color:var(--violet-2);margin-bottom:1rem;border-bottom:1px solid rgba(124,58,237,.15);padding-bottom:.6rem}
.details-grid{display:flex;flex-direction:column;gap:10px}
.detail-row{display:flex;justify-content:space-between;align-items:baseline;gap:6px}
.detail-label{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:rgba(240,238,255,.3);flex-shrink:0}
.detail-value{font-size:12px;color:var(--text);font-weight:300;text-align:right}
.detail-isrc{font-size:10px;font-family:monospace;color:var(--violet-2)}
.detail-link{color:var(--text);text-decoration:none}
.detail-link:hover{color:var(--violet-2)}

.sidebar--release-view{
  width:248px;
  padding-top:1.15rem;
  background:
    linear-gradient(180deg,rgba(18,18,29,.98),rgba(10,10,16,.98)),
    var(--sidebar);
  border-right:1px solid rgba(255,255,255,.04)
}
.sidebar--release-view .sb-sec{padding:0 .75rem;margin-bottom:.85rem}
.sidebar--release-view .sb-div{margin:.55rem .75rem}
.sidebar--release-view .sb-label{
  margin-bottom:8px;
  padding:0 10px;
  font-size:9px;
  color:rgba(240,238,255,.26)
}
.sidebar--release-view .sb-item{
  min-height:40px;
  padding:8px 10px;
  border-radius:12px;
  font-size:12px;
  color:rgba(240,238,255,.62)
}
.sidebar--release-view .sb-item svg{width:16px;height:16px}
.sidebar--release-view .sb-item--artist{
  gap:9px;
  align-items:center
}
.sidebar--release-view .sb-artist-avatar{
  width:22px;
  height:22px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.sidebar--release-view .sb-item.active{
  background:rgba(124,58,237,.12);
  border:1px solid rgba(124,58,237,.16)
}
.sidebar--private-minimal{
  width:336px;
  padding-top:1.15rem;
  background:
    linear-gradient(180deg,rgba(18,18,29,.98),rgba(10,10,16,.98)),
    var(--sidebar);
  border-right:1px solid rgba(255,255,255,.04)
}
.sidebar--private-minimal .sb-sec{padding:0 .85rem;margin-bottom:.85rem}
.sidebar--private-minimal .sb-label{
  margin-bottom:8px;
  padding:0 10px;
  font-size:9px;
  color:rgba(240,238,255,.26)
}
.sidebar--private-minimal .pl-box{
  margin:0;
  padding:12px;
  border-radius:14px
}
.sidebar--private-minimal .playlist-sidebar-panel--private{
  margin-top:10px;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(124,58,237,.14);
  box-shadow:none
}
.sidebar--private-minimal .playlist-sidebar-panel--private .playlist-related-list{
  display:flex;
  flex-direction:column;
  gap:8px
}
.sidebar--private-minimal .playlist-related-item--private{
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:10px;
  align-items:center;
  padding:8px;
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06)
}
.sidebar--private-minimal .playlist-related-item--private:hover{
  border-color:rgba(124,58,237,.26);
  background:rgba(124,58,237,.08)
}
.sidebar--private-minimal .playlist-related-item--private .playlist-related-thumb{
  width:40px;
  height:40px;
  border-radius:10px
}
.sidebar--private-minimal .playlist-related-item--private .playlist-related-kicker{
  font-size:9px;
  letter-spacing:1.1px;
  margin-bottom:2px
}
.sidebar--private-minimal .playlist-related-item--private .playlist-related-name{
  font-size:12px;
  margin-bottom:2px
}
.sidebar--private-minimal .playlist-related-item--private .playlist-related-meta{
  font-size:10px
}
.sidebar--private-minimal .playlist-sidebar-empty{
  font-size:11px;
  line-height:1.5;
  color:rgba(240,238,255,.38)
}

.home-footer--release{
  margin-top:.4rem;
  padding:1.35rem 1.75rem 1.5rem;
  background:linear-gradient(180deg,rgba(13,13,24,.94),rgba(9,9,15,.98));
  border-top:1px solid rgba(255,255,255,.05)
}
.footer-inner--release{
  grid-template-columns:1fr;
  gap:0;
  margin-bottom:0;
  align-items:center
}
.footer-release-signature{
  font-size:12px;
  color:rgba(240,238,255,.52);
  text-align:center;
  letter-spacing:.02em
}

.release-view-page .content{
  background:
    radial-gradient(circle at top right,rgba(124,58,237,.08),transparent 24%),
    linear-gradient(180deg,#09090f 0%,#0a0a10 100%)
}
.layout--private .content{
  background:
    radial-gradient(circle at top right,rgba(124,58,237,.08),transparent 24%),
    linear-gradient(180deg,#09090f 0%,#0a0a10 100%)
}
.release-view-page .breadcrumb{margin-bottom:1rem}
.release-view-page .padded{padding:1.25rem 1.5rem 1.9rem}
.release-page-shell{
  width:100%;
  max-width:none;
  padding-top:.25rem
}
.release-page-shell--wide{width:100%}
.page-shell--private-wide{width:100%}
.release-wide-hero{
  position:relative;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:1.2rem;
  align-items:start;
  width:100%;
  margin-bottom:.95rem;
  padding:1.05rem 1.15rem;
  border-radius:22px;
  overflow:hidden;
  background:
    radial-gradient(circle at 84% 18%,rgba(236,72,153,.12),transparent 24%),
    radial-gradient(circle at 16% 22%,rgba(124,58,237,.18),transparent 28%),
    linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
  border:1px solid rgba(124,58,237,.18);
  box-shadow:0 28px 72px rgba(0,0,0,.28)
}
.release-wide-hero::before{
  content:'';
  position:absolute;
  inset:auto -88px -112px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.24),transparent 70%);
  pointer-events:none
}
.release-wide-cover-column{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  min-width:0
}
.release-wide-cover{
  width:220px;
  height:220px;
  min-width:220px;
  min-height:220px;
  max-width:none;
  object-fit:cover;
  aspect-ratio:1/1;
  border-radius:18px;
  background:linear-gradient(135deg,#1a0535,#5a1a9a);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 54px rgba(0,0,0,.32)
}
.release-wide-copy{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-width:0
}
.release-topline{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:8px
}
.release-topline-link{
  color:var(--violet-2);font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;text-decoration:none
}
.release-topline-link:hover{color:#fff}
.release-topline-sep{
  width:6px;height:6px;border-radius:50%;background:rgba(236,72,153,.9);box-shadow:0 0 14px rgba(236,72,153,.55)
}
.release-topline-type{
  display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;border:1px solid rgba(124,58,237,.22);
  background:rgba(124,58,237,.1);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:rgba(240,238,255,.68)
}
.release-page-title{
  margin-bottom:6px;
  font-size:clamp(34px,3.8vw,56px);
  line-height:.95;
  letter-spacing:-.035em
}
.release-credit-line{
  display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin-bottom:5px;
  font-size:11px;color:rgba(240,238,255,.58)
}
.release-credit-line a{color:#fff;text-decoration:none}
.release-credit-line a:hover{color:var(--violet-2)}
.release-meta-line{
  display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin-bottom:.7rem;
  color:rgba(240,238,255,.44);font-size:10px;text-transform:uppercase;letter-spacing:.08em
}
.release-meta-line span+span::before{content:'•';margin-right:8px;color:rgba(240,238,255,.28)}
.release-stat-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-bottom:.75rem
}
.release-stat-card{
  min-width:0;
  padding:.62rem .75rem .58rem;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(124,58,237,.14)
}
.release-stat-value{
  font-family:'Bebas Neue',sans-serif;font-size:24px;line-height:.95;letter-spacing:.03em;color:#fff;margin-bottom:2px
}
.release-stat-label{
  font-size:9px;letter-spacing:.1em;text-transform:uppercase;color:rgba(240,238,255,.4)
}
.release-action-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:.75rem
}
.release-action-row .btn-secondary{
  border-radius:999px;padding:0 14px;min-height:40px;background:rgba(255,255,255,.04);font-size:11px
}
.btn-play-inline--hero{
  position:relative;display:inline-flex;align-items:center;gap:10px;min-height:40px;padding:6px 14px 6px 10px;border-radius:999px;
  border:1px solid rgba(124,58,237,.34);box-shadow:0 14px 34px rgba(76,29,149,.22);overflow:visible;will-change:transform,box-shadow
}
.btn-play-inline--hero.is-active-track{
  border-color:rgba(167,139,250,.48);box-shadow:0 18px 40px rgba(76,29,149,.28)
}
.btn-play-inline--hero:hover{transform:translateY(-1px);box-shadow:0 18px 42px rgba(76,29,149,.28)}
.btn-play-inline--hero::after{
  content:'';position:absolute;inset:-6px;border-radius:999px;border:1px solid rgba(167,139,250,.25);opacity:0;pointer-events:none
}
.btn-play-inline--hero.is-pressed::after{animation:heroPlayWave .34s ease-out}
.btn-play-inline__core{
  position:relative;width:24px;height:24px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0
}
.btn-play-inline__glyph{
  position:relative;z-index:2;width:24px;height:24px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.13);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)
}
.btn-play-inline--hero.is-active-track .btn-play-inline__glyph{background:rgba(255,255,255,.18)}
.btn-play-inline__glyph svg{width:10px;height:10px;fill:#fff;margin-left:2px}
.btn-play-inline__orbit{
  position:absolute;inset:-7px;border-radius:999px;border:1px solid rgba(167,139,250,.32);animation:heroPlayOrbit 4.8s linear infinite;
  pointer-events:none
}
.btn-play-inline__dot{
  position:absolute;top:50%;left:100%;width:6px;height:6px;margin-top:-3px;margin-left:-3px;border-radius:50%;
  background:var(--violet-2);box-shadow:0 0 18px rgba(167,139,250,.75)
}
.btn-play-inline__label{position:relative;z-index:2;font-size:11px}
.btn-play-inline--hero.is-playing .btn-play-inline__orbit{
  animation-duration:2.2s;border-color:rgba(236,72,153,.48)
}
.btn-play-inline--hero.is-playing .btn-play-inline__dot{
  background:var(--pink);box-shadow:0 0 20px rgba(236,72,153,.65)
}
@keyframes heroPlayOrbit{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes heroPlayWave{
  0%{opacity:.6;transform:scale(.92)}
  100%{opacity:0;transform:scale(1.06)}
}
.release-detail-board{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  margin-top:.1rem;
  padding:.35rem .55rem;
  border-radius:14px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06)
}
.release-detail-board .detail-row{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:3px;
  min-width:0;
  padding:8px 12px;
  background:none;
  border:none;
  border-left:1px solid rgba(255,255,255,.06)
}
.release-detail-board .detail-row:nth-child(4n+1){border-left:none}
.release-detail-board .detail-label{
  font-size:9px;
  color:rgba(240,238,255,.32)
}
.release-detail-board .detail-value{
  font-size:11px;
  text-align:left;
  color:rgba(240,238,255,.82);
  line-height:1.35;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}
.release-tracklist-card{
  width:100%;
  padding:1.45rem 1.55rem;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border:1px solid rgba(124,58,237,.14)
}
.release-tracklist-card .sec-hdr{margin-bottom:1rem}
.release-tracklist-card .tl-header{
  grid-template-columns:92px minmax(0,1fr) 84px 148px;
  padding:0 14px 10px;
  margin-bottom:2px
}
.release-tracklist-card .tl-row{
  grid-template-columns:92px minmax(0,1fr) 84px 148px;
  gap:14px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid transparent;
  background:rgba(255,255,255,.018);
  transition:background .18s,border-color .18s,transform .18s
}
.release-tracklist-card .tl-row + .tl-row{margin-top:8px}
.release-tracklist-card .tl-row:hover,
.release-tracklist-card .tl-row.active,
.release-tracklist-card .tl-row.playing{
  background:rgba(124,58,237,.09);border-color:rgba(124,58,237,.26);transform:translateX(3px)
}
.release-tracklist-card .tl-cell-play{justify-content:flex-start;gap:12px}
.release-tracklist-card .tl-btn{
  width:42px;height:42px;border-radius:50%;border:1px solid rgba(124,58,237,.24);background:rgba(124,58,237,.12);color:#fff
}
.release-tracklist-card .tl-btn:hover{background:rgba(124,58,237,.22);border-color:rgba(124,58,237,.44)}
.release-tracklist-card .tl-num{
  min-width:18px;font-family:'Bebas Neue',sans-serif;font-size:28px;line-height:1;color:rgba(240,238,255,.42);text-align:left
}
.release-tracklist-card .tl-info{gap:14px}
.release-tracklist-card .tl-img{width:52px;height:52px;border-radius:14px}
.release-tracklist-card .tl-name{
  display:block;margin-bottom:5px;font-size:15px;font-weight:600;color:#fff
}
.release-tracklist-card .tl-name:hover{color:var(--violet-2)}
.release-tracklist-card .tl-artist{
  font-size:12px;color:rgba(240,238,255,.46);line-height:1.45;white-space:normal;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden
}
.release-tracklist-card .tl-duration{
  font-size:13px;font-weight:600;color:rgba(240,238,255,.72);text-align:right
}
.release-tracklist-card .tl-actions{
  display:flex;align-items:center;justify-content:flex-end;gap:10px
}
.tl-page-link{
  font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(240,238,255,.62);text-decoration:none;
  border:1px solid rgba(255,255,255,.09);padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.03)
}
.tl-page-link:hover{color:var(--violet-2);border-color:rgba(124,58,237,.24)}
.release-tracklist-card .tl-like{
  color:rgba(240,238,255,.4);width:30px;opacity:1
}
.release-tracklist-card .tl-row:hover .tl-like,
.release-tracklist-card .tl-row.active .tl-like,
.release-tracklist-card .tl-row.playing .tl-like{color:rgba(240,238,255,.72)}
.release-related-panel{margin-bottom:0}
.release-related-panel .release-grid{
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr))
}

.track-page-shell{padding-bottom:.2rem}
.track-view-page .release-wide-hero{
  grid-template-columns:190px minmax(0,1fr);
  gap:1rem;
  padding:.95rem 1.05rem
}
.track-view-page .release-wide-cover,
.track-wide-cover{
  width:190px;
  height:190px;
  min-width:190px;
  min-height:190px
}
.track-page-title{
  font-size:clamp(30px,3.2vw,48px);
  line-height:.97
}
.btn-secondary--video{
  border-color:rgba(236,72,153,.24) !important;
  background:linear-gradient(135deg,rgba(236,72,153,.14),rgba(124,58,237,.1)) !important;
  color:#fff !important;
  box-shadow:0 14px 34px rgba(76,29,149,.18)
}
.btn-secondary--video:hover{
  border-color:rgba(236,72,153,.42) !important;
  background:linear-gradient(135deg,rgba(236,72,153,.2),rgba(124,58,237,.14)) !important
}
.track-support-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:1rem;
  margin-bottom:1.1rem
}
.track-panel-card{
  padding:1.2rem 1.25rem;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border:1px solid rgba(124,58,237,.14)
}
.track-panel-card .sec-hdr{margin-bottom:.95rem}
.track-panel-card .lyrics{
  min-height:0;
  max-height:380px;
  overflow:auto;
  padding-right:.25rem
}
.track-panel-card .yt-wrap{border-radius:16px}
.track-tracklist-card{margin-bottom:1.15rem}
.track-tracklist-card .tracklist-header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:1rem;
  padding:0 4px .9rem
}
.track-related-panel{margin-bottom:0}

.video-view-page .release-wide-hero{
  grid-template-columns:190px minmax(0,1fr);
  gap:1rem;
  padding:1rem 1.05rem
}
.video-page-intro{
  max-width:66ch;
  margin:-.08rem 0 .8rem;
  font-size:14px;
  line-height:1.72;
  color:rgba(240,238,255,.62)
}
.video-share-strip{
  margin-top:.9rem;
  padding:1rem 1.05rem;
  border-radius:20px;
  border:1px solid rgba(124,58,237,.16);
  background:
    radial-gradient(circle at top right,rgba(236,72,153,.12),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px
}
.video-share-copy{flex:1 1 280px;min-width:0}
.video-share-kicker{
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(240,238,255,.4);
  margin-bottom:6px
}
.video-share-text{
  font-size:13px;
  line-height:1.7;
  color:rgba(240,238,255,.62)
}
.video-share-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
  flex:1 1 460px
}
.video-share-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  color:#f3f0ff;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  transition:transform .18s,border-color .18s,background .18s,color .18s
}
.video-share-pill:hover{
  transform:translateY(-1px);
  border-color:rgba(124,58,237,.34);
  background:rgba(124,58,237,.12);
  color:#fff
}
.video-page-shell{padding-bottom:.2rem}
.video-feature-card,
.video-lyrics-card{
  padding:1.15rem 1.2rem
}
.video-feature-card{
  margin-bottom:1rem;
  background:
    radial-gradient(circle at 82% 16%,rgba(236,72,153,.12),transparent 24%),
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.02))
}
.video-page-embed{
  aspect-ratio:16/9;
  min-height:420px;
  border-radius:22px;
  border:1px solid rgba(124,58,237,.18);
  box-shadow:0 28px 74px rgba(0,0,0,.34)
}
.video-feature-caption{
  margin-top:.85rem;
  font-size:13px;
  line-height:1.7;
  color:rgba(240,238,255,.54)
}
.video-lyrics-card{
  margin-bottom:1rem;
  background:
    radial-gradient(circle at top left,rgba(124,58,237,.12),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.032),rgba(255,255,255,.02))
}
.video-lyrics-card .lyrics{
  min-height:0;
  max-height:none;
  overflow:visible
}
.video-lyrics-card .lyrics-text{
  max-width:76ch;
  font-size:15px;
  line-height:1.95;
  color:rgba(240,238,255,.84)
}
.video-link-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-bottom:1rem
}
.video-link-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
  padding:1rem 1.05rem;
  border-radius:20px;
  text-decoration:none;
  color:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.018));
  border:1px solid rgba(124,58,237,.14);
  transition:transform .18s,border-color .18s,background .18s
}
.video-link-card:hover{
  transform:translateY(-2px);
  border-color:rgba(124,58,237,.34);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.024))
}
.video-link-kicker{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(240,238,255,.36)
}
.video-link-title{
  font-size:15px;
  line-height:1.25;
  color:#fff;
  font-weight:600
}
.video-link-meta{
  font-size:12px;
  color:rgba(240,238,255,.54)
}

@media (max-width:1279px){
  .release-view-page .padded{padding:1.15rem 1.2rem 1.75rem}
  .release-wide-hero{
    grid-template-columns:200px minmax(0,1fr);
    gap:1rem;
    padding:.95rem
  }
  .release-wide-cover{
    width:200px;
    height:200px;
    min-width:200px;
    min-height:200px
  }
  .release-page-title{font-size:clamp(32px,5.2vw,48px)}
  .release-detail-board{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .release-detail-board .detail-row:nth-child(4n+1){border-left:1px solid rgba(255,255,255,.06)}
  .release-detail-board .detail-row:nth-child(2n+1){border-left:none}
  .track-view-page .release-wide-hero{
    grid-template-columns:176px minmax(0,1fr)
  }
  .track-view-page .release-wide-cover,
  .track-wide-cover{
    width:176px;
    height:176px;
    min-width:176px;
    min-height:176px
  }
  .video-view-page .release-wide-hero{
    grid-template-columns:176px minmax(0,1fr)
  }
  .video-page-embed{min-height:360px}
  .video-share-actions{justify-content:flex-start}
  .video-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:1023px){
  .footer-inner--release{grid-template-columns:1fr}
  .release-wide-hero{
    grid-template-columns:1fr;
    gap:1.35rem
  }
  .release-wide-cover-column{max-width:180px}
  .release-wide-cover{
    width:180px;
    height:180px;
    min-width:180px;
    min-height:180px
  }
  .release-detail-board{grid-template-columns:1fr}
  .release-detail-board .detail-row,
  .release-detail-board .detail-row:nth-child(4n+1),
  .release-detail-board .detail-row:nth-child(2n+1){border-left:none}
  .track-support-grid{grid-template-columns:1fr}
  .video-view-page .release-wide-hero{grid-template-columns:1fr}
  .video-page-embed{min-height:0}
  .video-share-strip{padding:.95rem 1rem}
  .video-share-actions{justify-content:flex-start}
  .video-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:767px){
  .home-footer--release{padding:1.15rem 1.25rem 1.35rem}
  .release-view-page .padded{padding:1rem}
  .release-page-shell{padding-top:0}
  .release-wide-hero,
  .release-tracklist-card{border-radius:22px}
  .release-wide-hero{padding:1rem}
  .release-wide-cover-column{max-width:150px}
  .release-wide-cover{
    width:150px;
    height:150px;
    min-width:150px;
    min-height:150px
  }
  .release-stat-strip{grid-template-columns:1fr;gap:10px}
  .release-action-row .btn-secondary,.btn-play-inline--hero{width:100%;justify-content:center}
  .release-detail-board .detail-row{grid-template-columns:1fr;padding:12px}
  .release-tracklist-card{padding:1rem}
  .release-tracklist-card .tl-header{display:none}
  .release-tracklist-card .tl-row{grid-template-columns:74px minmax(0,1fr) 56px 38px;gap:10px;padding:11px 10px}
  .release-tracklist-card .tl-cell-play{gap:10px}
  .release-tracklist-card .tl-num{font-size:24px}
  .release-tracklist-card .tl-img{width:46px;height:46px}
  .release-tracklist-card .tl-page-link{display:none}
  .release-tracklist-card .tl-actions{justify-content:flex-end}
  .track-view-page .release-wide-hero{
    grid-template-columns:1fr;
    gap:.9rem
  }
  .track-view-page .release-wide-cover-column{max-width:150px}
  .video-view-page .release-wide-hero{
    grid-template-columns:1fr;
    gap:.9rem
  }
  .video-view-page .release-wide-cover-column{max-width:150px}
  .video-feature-card,
  .video-lyrics-card{padding:1rem}
  .video-page-embed{border-radius:18px}
  .video-page-intro{
    font-size:13px;
    line-height:1.68;
    margin:.05rem 0 .75rem
  }
  .video-share-strip{padding:.9rem}
  .video-share-actions{flex:1 1 100%}
  .video-share-pill,.btn-secondary--share{width:100%;justify-content:center}
  .video-feature-caption{
    font-size:12px;
    line-height:1.65
  }
  .video-lyrics-card .lyrics-text{
    font-size:14px;
    line-height:1.82
  }
  .video-link-grid{grid-template-columns:1fr}
  .track-tracklist-card .tracklist-header{
    display:block;
    padding:0 2px .8rem
  }
  .track-tracklist-card .tracklist-header .see-all{margin-top:.7rem}
}

.bottom-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem}
.chart-grid{grid-template-columns:minmax(0,1.78fr) minmax(360px,1fr);align-items:start}
.chart-hero-card{
  grid-template-columns:minmax(0,1.08fr) minmax(460px,1fr);gap:1.5rem;align-items:stretch;padding:1.75rem
}
.chart-hero-copy{display:flex;flex-direction:column;min-width:0}
.chart-hero-note{font-size:13px;color:rgba(240,238,255,.54);line-height:1.65;max-width:62ch;margin:-.35rem 0 0}
.chart-summary-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:1.25rem}
.chart-summary-card{
  background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.14);border-radius:16px;padding:1rem
}
.chart-summary-value{font-family:'Bebas Neue',sans-serif;font-size:32px;line-height:1;color:#fff;margin-bottom:6px}
.chart-summary-label{font-size:11px;letter-spacing:.9px;text-transform:uppercase;color:rgba(240,238,255,.38)}
.chart-hero-main{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(220px,.76fr);gap:12px;min-width:0}
.chart-lead-card{
  display:grid;grid-template-columns:118px minmax(0,1fr);gap:14px;align-items:center;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.025));
  border:1px solid rgba(124,58,237,.18);border-radius:20px;padding:14px;min-width:0;position:relative;overflow:hidden
}
.chart-lead-card::before{
  content:'';position:absolute;inset:auto -42px -42px auto;width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.18),transparent 70%);pointer-events:none
}
.chart-lead-rank{
  position:absolute;top:12px;left:12px;font-family:'Bebas Neue',sans-serif;font-size:26px;letter-spacing:1px;color:var(--violet-2)
}
.chart-lead-cover{
  width:118px;height:118px;border-radius:18px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.chart-lead-copy{min-width:0;padding-top:20px}
.chart-lead-title{
  display:block;font-size:22px;font-weight:600;line-height:1.18;color:#fff;text-decoration:none;margin-bottom:8px
}
.chart-lead-title:hover{color:var(--violet-2)}
.chart-lead-meta{display:flex;flex-wrap:wrap;gap:6px;color:rgba(240,238,255,.48);font-size:12px;line-height:1.55;margin-bottom:12px}
.chart-lead-meta a{color:var(--text);text-decoration:none}
.chart-lead-meta a:hover{color:var(--violet-2)}
.chart-lead-pills{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.chart-stack-panel{
  background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.14);border-radius:20px;padding:12px;min-width:0
}
.chart-stack{display:grid;grid-template-columns:1fr;gap:10px;min-width:0}
.chart-stack-card{
  display:grid;grid-template-columns:40px 56px minmax(0,1fr);gap:12px;align-items:center;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05);border-radius:16px;padding:10px;overflow:hidden
}
.chart-stack-rank{
  font-family:'Bebas Neue',sans-serif;font-size:22px;letter-spacing:1px;color:var(--violet-2);text-align:center
}
.chart-stack-img{width:56px;height:56px;border-radius:14px;object-fit:cover;background:var(--surface-2)}
.chart-stack-copy{min-width:0}
.chart-stack-title{padding:0;font-size:12px;font-weight:600;color:var(--text);line-height:1.35;margin-bottom:4px}
.chart-stack-meta{font-size:11px;color:rgba(240,238,255,.44);line-height:1.4;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chart-list-card,.chart-player-card{
  width:auto;min-width:0;padding:1.2rem;border-radius:20px
}
.chart-list-card{display:flex;flex-direction:column}
.chart-list-meta{font-size:12px;color:rgba(240,238,255,.42);text-align:right}
.chart-list{display:flex;flex-direction:column;gap:10px;max-height:none;overflow:visible;padding-right:0;scrollbar-gutter:stable}
.chart-row{
  display:grid;grid-template-columns:52px 44px 60px minmax(0,1fr) 56px;gap:12px;align-items:center;
  padding:12px 14px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05);border-radius:14px;transition:all .15s
}
.chart-row--usage{grid-template-columns:52px 44px 60px minmax(0,1fr) 124px}
.chart-row:hover,.chart-row.active,.chart-row.playing{border-color:rgba(124,58,237,.35);background:rgba(124,58,237,.08)}
.chart-rank{font-family:'Bebas Neue',sans-serif;font-size:28px;letter-spacing:1px;color:var(--violet-2);text-align:center}
.chart-play-btn{
  width:44px;height:44px;border-radius:50%;border:1px solid rgba(124,58,237,.28);background:rgba(124,58,237,.14);color:#fff;
  display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s
}
.chart-play-btn:hover{background:rgba(124,58,237,.24);border-color:rgba(124,58,237,.48)}
.chart-play-btn--lead{
  width:52px;
  height:52px;
  background:linear-gradient(135deg,rgba(124,58,237,.92),rgba(91,33,182,.96));
  border-color:rgba(168,85,247,.42);
  box-shadow:0 16px 32px rgba(10,8,24,.34)
}
.chart-play-btn--lead svg{width:18px;height:18px}
.chart-play-btn.is-disabled{
  opacity:.34;
  cursor:default;
  pointer-events:none
}
.chart-play-placeholder{display:block;width:44px;height:44px}
.chart-play-btn svg{width:15px;height:15px;fill:currentColor;margin-left:2px}
.chart-cover{width:60px;height:60px;border-radius:14px;object-fit:cover;background:var(--surface-2)}
.chart-copy{min-width:0}
.chart-title{display:block;font-size:14px;font-weight:600;color:var(--text);text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chart-title:hover{color:var(--violet-2)}
.chart-meta{display:flex;align-items:center;gap:6px;flex-wrap:wrap;color:var(--muted-2);font-size:11px;margin-top:5px;line-height:1.5;overflow:hidden}
.chart-meta a{color:inherit;text-decoration:none;overflow:hidden;text-overflow:ellipsis}
.chart-meta a:hover{color:var(--text)}
.chart-status-unavailable{color:rgba(240,238,255,.34)}
.chart-duration{font-size:12px;color:var(--muted-2);text-align:right}
.chart-duration--usage{
  font-size:15px;
  font-weight:700;
  color:#fff;
  letter-spacing:.2px;
  text-align:left;
  justify-self:start
}
.chart-tag-muted{color:rgba(240,238,255,.6)}
.chart-player-card{position:sticky;top:72px}
.chart-summary-card--usage .chart-summary-value{
  font-size:40px;
  color:var(--violet-2)
}
.chart-preview-note{font-size:12px;color:rgba(240,238,255,.44);line-height:1.6;margin:.35rem 0 1rem}
.chart-current{
  display:grid;grid-template-columns:88px minmax(0,1fr);gap:14px;align-items:center;
  margin-bottom:1rem;padding:12px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.14)
}
.chart-current-cover{
  width:88px;height:88px;border-radius:18px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.chart-current-copy{min-width:0}
.chart-current-kicker{
  display:flex;align-items:center;gap:6px;flex-wrap:wrap;font-size:11px;letter-spacing:1px;text-transform:uppercase;color:rgba(240,238,255,.38);margin-bottom:8px
}
.chart-current-title{
  display:block;font-size:20px;font-weight:600;line-height:1.2;color:#fff;text-decoration:none;margin-bottom:6px
}
.chart-current-title:hover{color:var(--violet-2)}
.chart-current-artist{
  display:inline-flex;align-items:center;font-size:13px;font-weight:500;color:var(--violet-2);text-decoration:none;margin-bottom:6px
}
.chart-current-artist:hover{color:#fff}
.chart-current-release{font-size:12px;color:rgba(240,238,255,.46);line-height:1.55}
.chart-player-links{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.section-card{padding:1.5rem;border-radius:16px}

.yt-wrap{position:relative;border-radius:10px;overflow:hidden;aspect-ratio:16/9;border:1px solid rgba(124,58,237,.15);background:#000}
.yt-placeholder,.yt-ph{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;cursor:pointer;
  background:linear-gradient(135deg,#1a0a3a,#0a1a2a);transition:all .2s;z-index:2
}
.yt-placeholder:hover .yt-btn,.yt-ph:hover .yt-btn{background:var(--violet);transform:scale(1.08)}
.yt-neon{position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(124,58,237,.1),transparent 70%)}
.yt-btn{
  width:56px;height:56px;border-radius:50%;background:rgba(124,58,237,.85);display:flex;align-items:center;justify-content:center;
  transition:all .25s;position:relative;z-index:1
}
.yt-btn svg{fill:#fff;width:20px;height:20px;margin-left:3px}
.yt-hint{font-size:12px;color:rgba(240,238,255,.45);letter-spacing:.5px;position:relative;z-index:1;text-align:center;padding:0 1rem}
.yt-badge{position:absolute;top:10px;left:10px;background:rgba(0,0,0,.8);color:#fff;font-size:9px;letter-spacing:1.5px;text-transform:uppercase;padding:3px 8px;border-radius:4px;z-index:3}
.yt-iframe-host,.video-frame{width:100%;height:100%;border:none;display:block;position:absolute;inset:0}

.playlist-page{max-width:none}
.playlist-page .breadcrumb{display:none}
.playlist-page > .padded:first-child:not(.playlist-layout-pad){display:none}
.playlist-page{
  height:100%;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  --playlist-left-width:392px;
  --playlist-right-width:392px;
}
.playlist-layout-pad{padding:0}
.playlist-page > .playlist-layout-pad{min-height:0;overflow:hidden}
.playlist-page .playlist-wide-shell{width:100%;max-width:none;margin:0}
.playlist-desktop-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) var(--playlist-right-width);
  gap:0;
  align-items:stretch;
  height:100%;
  min-height:0
}
.playlist-main-column{
  min-width:0;
  height:100%;
  overflow-y:auto;
  padding:0 2.25rem 1.5rem 2.5rem;
  scrollbar-gutter:stable
}
.playlist-main-column .playlist-hero-band{margin:0 0 1rem}
.playlist-main-column .playlist-action-bar{margin-bottom:.9rem}
.playlist-hero-band{
  position:relative;margin:0 2.5rem 1rem;border:1px solid rgba(255,255,255,.08);border-radius:24px;overflow:hidden;
  background:
    linear-gradient(180deg,rgba(215,88,131,.95) 0%,rgba(123,19,63,.9) 44%,rgba(16,10,18,.98) 100%),
    radial-gradient(circle at 15% 25%,rgba(255,255,255,.2),transparent 28%),
    radial-gradient(circle at 85% 15%,rgba(124,58,237,.2),transparent 25%);
  box-shadow:0 30px 80px rgba(0,0,0,.38)
}
.playlist-hero-band::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 28%,transparent 72%,rgba(0,0,0,.2));
  pointer-events:none
}
.playlist-hero-shell{
  position:relative;z-index:1;display:grid;grid-template-columns:minmax(260px,340px) minmax(0,1fr);
  gap:2.5rem;align-items:end;padding:3rem 3rem 2.2rem;min-height:360px
}
.playlist-hero-art{display:flex;align-items:flex-end;justify-content:flex-start}
.playlist-cover-main{
  width:min(320px,100%);aspect-ratio:1/1;object-fit:cover;border-radius:24px;
  border:1px solid rgba(255,255,255,.12);background:linear-gradient(135deg,#1a0535,#5a1a9a);
  box-shadow:0 30px 80px rgba(8,8,18,.44)
}
.playlist-hero-main{min-width:0;display:flex;flex-direction:column;justify-content:flex-end}
.playlist-kicker{
  font-size:11px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.82);margin-bottom:.6rem;font-weight:600
}
.playlist-title{
  font-size:clamp(58px,5.5vw,104px);line-height:.9;letter-spacing:.4px;margin-bottom:.7rem;color:#fff
}
.playlist-owner-line{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:0;font-size:15px;color:rgba(255,255,255,.88)
}
.playlist-owner-dot{
  width:18px;height:18px;border-radius:50%;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:10px;flex-shrink:0
}
.playlist-summary,.playlist-meta-row,.playlist-hero-side{display:none}
.playlist-actions{display:flex;flex-wrap:wrap;gap:10px}
.playlist-action-bar{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0 0 1rem;margin-bottom:1.2rem;
  border-bottom:1px solid rgba(255,255,255,.08)
}
.playlist-action-copy{
  font-size:12px;letter-spacing:1.4px;text-transform:uppercase;color:rgba(240,238,255,.34)
}
.playlist-action-bar .btn-secondary.is-hidden{display:none!important}
.playlist-tracklist-card,.playlist-preview-card,.playlist-related-card,.playlist-linked-panel{
  background:linear-gradient(180deg,rgba(19,19,28,.96),rgba(12,12,19,.98));border:1px solid rgba(255,255,255,.06);border-radius:18px;
  position:relative;overflow:hidden
}
.playlist-side-label,.playlist-tracklist-overline{
  font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(240,238,255,.42);margin-bottom:6px
}
.playlist-side-title{
  font-size:22px;font-weight:600;color:#fff;line-height:1.1
}
.playlist-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.playlist-stat{
  padding:14px;border-radius:14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)
}
.playlist-stat-value{
  font-family:'Bebas Neue',sans-serif;font-size:34px;letter-spacing:1px;color:#fff;line-height:1;margin-bottom:4px
}
.playlist-stat-label{
  font-size:10px;letter-spacing:1.6px;text-transform:uppercase;color:rgba(240,238,255,.36)
}
.playlist-facts{display:flex;flex-direction:column;gap:10px}
.playlist-fact{
  display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.06)
}
.playlist-fact:last-child{padding-bottom:0;border-bottom:none}
.playlist-fact-label{
  font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:rgba(240,238,255,.34);flex-shrink:0
}
.playlist-fact-value{
  font-size:13px;color:rgba(240,238,255,.86);text-align:right;line-height:1.58
}
.playlist-body-grid{
  display:grid;grid-template-columns:minmax(0,2.18fr) minmax(260px,.56fr);gap:1.2rem;align-items:start;margin-bottom:1.35rem
}
.playlist-rail{
  display:flex;
  flex-direction:column;
  gap:1rem;
  width:100%;
  height:100%;
  padding:0 1rem 1.25rem;
  overflow:visible;
  align-self:start;
  background:var(--sidebar);
  border-left:1px solid var(--border);
  scrollbar-gutter:stable
}
.playlist-tracklist-card{padding:0;background:transparent;border:none;border-radius:0;overflow:visible}
.playlist-tracklist-card .tracklist-header{
  margin-bottom:0;padding:.15rem 1.5rem .9rem;border-bottom:1px solid rgba(255,255,255,.08);align-items:flex-end
}
.playlist-tracklist-copy{display:flex;flex-direction:column;gap:4px}
.playlist-tracklist-card .section-title-main{font-size:18px;line-height:1.05}
.playlist-tracklist-subtitle{
  display:none
}
.playlist-tracklist-card .playlist-tracklist-overline{display:none}
.playlist-tracklist-card .tl-header{
  grid-template-columns:64px minmax(0,1.4fr) minmax(130px,.72fr) minmax(170px,.88fr) 76px 34px;padding:0 1.5rem .85rem;margin:0
}
.playlist-tracklist-card .tl-row{
  grid-template-columns:64px minmax(0,1.4fr) minmax(130px,.72fr) minmax(170px,.88fr) 76px 34px;padding:14px 1.5rem;border-radius:0;position:relative
}
.playlist-tracklist-card .tl-row + .tl-row{border-top:1px solid rgba(255,255,255,.04)}
.playlist-tracklist-card .tl-row::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:transparent;transition:background .15s
}
.playlist-tracklist-card .tl-row:hover{background:rgba(255,255,255,.025)}
.playlist-tracklist-card .tl-row.active,.playlist-tracklist-card .tl-row.playing{
  background:linear-gradient(90deg,rgba(124,58,237,.16),rgba(124,58,237,.04))
}
.playlist-tracklist-card .tl-row.active::before,.playlist-tracklist-card .tl-row.playing::before{background:var(--violet-2)}
.playlist-tracklist-card .tl-header span:nth-child(2){padding-left:60px}
.playlist-tracklist-card .tl-info{
  display:grid;grid-template-columns:48px minmax(0,1fr) minmax(130px,.72fr);gap:12px;align-items:center;min-width:0;grid-column:2 / 4
}
.playlist-tracklist-card .tl-info > div{display:contents}
.playlist-tracklist-card .tl-img{width:48px;height:48px;border-radius:10px}
.playlist-tracklist-card .tl-name{display:block;font-size:15px;font-weight:600;min-width:0;align-self:center}
.playlist-tracklist-card .tl-artist,.playlist-tracklist-card .tl-release,.playlist-tracklist-card .tl-duration{font-size:13px}
.playlist-tracklist-card .tl-artist{
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:rgba(240,238,255,.62);align-self:center
}
.playlist-tracklist-card .tl-release{
  display:block;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:rgba(240,238,255,.48)
}
.playlist-tracklist-card .tl-duration{min-width:56px;color:rgba(240,238,255,.44)}
.playlist-tracklist-card .tl-header span{min-width:0}
.playlist-tracklist-card .tl-btn{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)
}
.playlist-tracklist-card .tl-btn:hover{background:rgba(124,58,237,.16);border-color:rgba(124,58,237,.24)}
.playlist-tracklist-card .tl-num{font-size:14px}
.playlist-preview-card,.playlist-related-card,.playlist-linked-panel{padding:1.15rem}
.playlist-rail .playlist-preview-card,.playlist-rail .playlist-linked-panel{padding:1.25rem}
.playlist-preview-card{position:relative}
.playlist-preview-header{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:.85rem}
.playlist-preview-title{font-size:16px;font-weight:600;color:#fff;margin-bottom:4px}
.playlist-preview-meta{font-size:12px;line-height:1.55;color:rgba(240,238,255,.46)}
.playlist-now-playing{
  display:flex;align-items:center;gap:14px;margin-bottom:.95rem;padding:14px;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06)
}
.playlist-now-cover{width:92px;height:92px;border-radius:14px;object-fit:cover;flex-shrink:0}
.playlist-now-copy{min-width:0}
.playlist-now-label{
  font-size:10px;letter-spacing:1.6px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:5px
}
.playlist-now-title{
  font-size:19px;font-weight:600;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.playlist-now-meta{
  font-size:14px;color:rgba(240,238,255,.5);white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.playlist-current-state{
  display:inline-flex;align-items:center;gap:6px;margin-top:8px;padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);font-size:10px;letter-spacing:1.4px;text-transform:uppercase;color:rgba(240,238,255,.58)
}
.playlist-current-state::before{
  content:'';width:7px;height:7px;border-radius:50%;background:rgba(240,238,255,.28)
}
.playlist-current-state.is-playing::before{background:#22c55e;box-shadow:0 0 12px rgba(34,197,94,.55)}
.playlist-current-release-card{margin-bottom:.9rem}
.playlist-release-link{
  display:grid;grid-template-columns:92px minmax(0,1fr);gap:14px;align-items:center;padding:14px;border-radius:16px;
  text-decoration:none;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);transition:all .15s
}
.playlist-release-link:hover{border-color:rgba(124,58,237,.28);background:rgba(124,58,237,.08)}
.playlist-release-cover{
  width:92px;height:92px;border-radius:14px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.playlist-release-copy{min-width:0}
.playlist-release-title{
  font-size:16px;font-weight:600;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.playlist-release-meta{
  font-size:13px;color:rgba(240,238,255,.5);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-top:4px
}
.playlist-release-cta{
  display:inline-flex;align-items:center;justify-content:center;margin-top:10px;padding:8px 12px;border-radius:999px;
  border:1px solid rgba(124,58,237,.22);background:rgba(124,58,237,.12);color:#f0eeff;font-size:11px;letter-spacing:1px;text-transform:uppercase
}
.playlist-preview-card .yt-wrap{aspect-ratio:16/10;min-height:152px}
.playlist-tech-player{
  position:absolute!important;left:-9999px!important;top:auto!important;width:1px!important;height:1px!important;min-height:1px!important;
  aspect-ratio:auto!important;opacity:0!important;pointer-events:none!important;overflow:hidden!important;border:0!important
}
.playlist-tech-player .yt-placeholder{display:none!important}
.playlist-tech-player .yt-iframe-host{position:static!important;width:1px!important;height:1px!important}
.playlist-related-list{display:flex;flex-direction:column;gap:10px}
.playlist-related-item{
  display:grid;grid-template-columns:64px minmax(0,1fr);gap:12px;align-items:center;padding:12px;border-radius:14px;
  background:var(--sidebar);border:1px solid rgba(255,255,255,.06);text-decoration:none;transition:all .15s
}
.playlist-related-item:hover{border-color:rgba(124,58,237,.28);background:rgba(124,58,237,.08)}
.playlist-related-thumb{
  width:64px;height:64px;border-radius:12px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.playlist-related-kicker{
  font-size:10px;letter-spacing:1.4px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:4px
}
.playlist-related-name{
  font-size:15px;color:#fff;margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.playlist-related-meta{
  font-size:12px;color:rgba(240,238,255,.48);white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.playlist-sidebar-section .sb-label{margin-bottom:8px}
.playlist-sidebar-panel{
  padding:1.25rem;
  border-color:rgba(124,58,237,.18);
  box-shadow:0 18px 40px rgba(0,0,0,.28)
}
.playlist-sidebar-panel .playlist-related-list{gap:12px}
.playlist-sidebar-panel .playlist-related-item{
  grid-template-columns:72px minmax(0,1fr);
  padding:13px
}
.playlist-sidebar-panel .playlist-related-thumb{
  width:72px;
  height:72px;
  border-radius:14px
}
.playlist-linked-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-bottom:1.5rem
}
.playlist-linked-panel.is-hidden{display:none}
.playlist-panel-title{font-size:18px;font-weight:600;color:#fff;margin-bottom:12px}
.playlist-chip-list{display:flex;flex-wrap:wrap;gap:8px}
.playlist-chip{
  display:inline-flex;align-items:center;gap:6px;padding:9px 12px;border-radius:999px;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);font-size:12px;color:rgba(240,238,255,.68);text-decoration:none;transition:all .15s
}
.playlist-chip:hover{border-color:rgba(124,58,237,.3);background:rgba(124,58,237,.08);color:var(--violet-2)}
.playlist-chip strong{color:#fff;font-weight:600}

.contact-shell{max-width:1400px;margin:0 auto}
.contact-page{padding-bottom:2rem}
.contact-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,420px);
  gap:1.5rem;
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 24%,rgba(124,58,237,.24),transparent 34%),
    radial-gradient(circle at 84% 18%,rgba(236,72,153,.18),transparent 28%),
    linear-gradient(135deg,#13061f 0%,#1b0835 42%,#090914 100%);
  border:1px solid rgba(124,58,237,.18);
  box-shadow:0 26px 60px rgba(0,0,0,.34)
}
.contact-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:44%;
  background:linear-gradient(180deg,rgba(9,9,20,0),rgba(9,9,20,.78))
}
.contact-hero-copy{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:2.6rem 2.55rem 2.2rem
}
.contact-kicker{
  font-size:10px;
  letter-spacing:2.6px;
  text-transform:uppercase;
  color:var(--violet-2);
  margin-bottom:10px
}
.contact-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(54px,6vw,92px);
  letter-spacing:1px;
  line-height:.94;
  color:#fff;
  margin-bottom:10px
}
.contact-lead{
  max-width:640px;
  font-size:14px;
  line-height:1.8;
  color:rgba(240,238,255,.68)
}
.contact-hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:1.2rem}
.contact-hero-visual{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:2.2rem 2rem 2rem 0
}
.contact-hero-cover{
  width:min(340px,100%);
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 48px rgba(0,0,0,.38)
}
.contact-hero-stack{
  position:absolute;
  top:1.4rem;
  right:1.25rem;
  display:flex;
  flex-direction:column;
  gap:12px
}
.contact-hero-stack-card{
  width:92px;
  height:92px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 32px rgba(0,0,0,.28)
}
.contact-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:1.5rem 0 1.75rem
}
.contact-metric{
  padding:1.05rem 1.15rem;
  border-radius:16px;
  background:var(--surface);
  border:1px solid rgba(124,58,237,.14)
}
.contact-metric-label{
  font-size:10px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:rgba(240,238,255,.34);
  margin-bottom:8px
}
.contact-metric-value{
  font-size:18px;
  font-weight:600;
  color:#fff;
  line-height:1.35
}
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:16px;
  align-items:start
}
.contact-card{
  background:var(--surface);
  border:1px solid rgba(124,58,237,.14);
  border-radius:20px;
  padding:1.45rem;
  box-shadow:0 16px 34px rgba(0,0,0,.16)
}
.contact-card + .contact-card{margin-top:16px}
.contact-card-title{
  font-size:20px;
  font-weight:600;
  color:#fff;
  margin-bottom:8px
}
.contact-card-copy{
  font-size:13px;
  line-height:1.7;
  color:rgba(240,238,255,.56);
  margin-bottom:1rem
}
.contact-form{display:flex;flex-direction:column;gap:1rem}
.contact-form__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px
}
.field label{
  display:block;
  margin-bottom:6px;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(240,238,255,.42)
}
.field input,
.field textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.035);
  color:#fff;
  padding:12px 14px;
  outline:none;
  transition:border-color .15s,box-shadow .15s,background .15s
}
.field input::placeholder,
.field textarea::placeholder{color:rgba(240,238,255,.24)}
.field input:focus,
.field textarea:focus{
  border-color:rgba(124,58,237,.54);
  box-shadow:0 0 0 3px rgba(124,58,237,.12);
  background:rgba(255,255,255,.05)
}
.field textarea{min-height:184px;resize:vertical}
.field--hidden{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important
}
.contact-form__actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.contact-form__status{
  font-size:12px;
  line-height:1.5;
  color:rgba(240,238,255,.56)
}
.contact-form__status.is-success{color:var(--success)}
.contact-form__status.is-error{color:var(--danger)}
.contact-inline-link{font-size:12px}
.contact-inline-link a{color:var(--violet-2);text-decoration:none}
.contact-inline-link a:hover{text-decoration:underline}
.contact-note{
  font-size:11px;
  line-height:1.7;
  color:rgba(240,238,255,.36)
}
.contact-note a{color:var(--violet-2);text-decoration:none}
.contact-note a:hover{text-decoration:underline}
.contact-id-list,.contact-use-list{display:grid;gap:12px}
.contact-id-item,
.contact-use-item{
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06)
}
.contact-id-label,
.contact-use-label{
  font-size:10px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(240,238,255,.34);
  margin-bottom:6px
}
.contact-id-value,
.contact-use-value{
  font-size:16px;
  font-weight:600;
  color:#fff;
  line-height:1.45
}
.contact-use-meta{
  font-size:12px;
  line-height:1.6;
  color:rgba(240,238,255,.48);
  margin-top:4px
}
.contact-roster-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px
}
.contact-roster-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:var(--surface);
  border:1px solid rgba(124,58,237,.14);
  border-radius:18px;
  overflow:hidden;
  transition:transform .18s,border-color .18s,background .18s
}
.contact-roster-card:hover{
  transform:translateY(-2px);
  border-color:rgba(124,58,237,.34);
  background:var(--surface-2)
}
.contact-roster-cover{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.contact-roster-body{padding:12px}
.contact-roster-kicker{
  font-size:10px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(240,238,255,.34);
  margin-bottom:4px
}
.contact-roster-name{
  font-size:14px;
  font-weight:600;
  color:#fff;
  margin-bottom:4px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}
.contact-roster-copy{
  font-size:12px;
  line-height:1.55;
  color:rgba(240,238,255,.46)
}
.contact-sidebar-panel .playlist-panel-title{margin-bottom:10px}
.contact-sidebar-panel .playlist-related-meta{white-space:normal;line-height:1.5}
.contact-direct-card{
  display:flex;
  flex-direction:column;
  gap:10px
}
.contact-direct-meta{
  font-size:12px;
  line-height:1.6;
  color:rgba(240,238,255,.5)
}

.lyrics{min-height:160px}
.lyrics-text{
  font-size:13px;color:rgba(240,238,255,.75);line-height:1.8;white-space:pre-wrap;word-break:break-word
}
.lyrics-text p{margin-bottom:1rem}
.no-lyrics{display:flex;flex-direction:column;align-items:center;justify-content:center;height:160px;gap:10px;opacity:.4}
.no-lyrics-icon{font-size:28px}
.no-lyrics-text{font-size:13px;color:rgba(240,238,255,.5);font-weight:300;text-align:center;line-height:1.6}

.home-footer{background:var(--sidebar);border-top:1px solid var(--border);padding:2.5rem;margin-top:1rem}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;margin-bottom:1.5rem}
.footer-brand-name{font-family:'Bebas Neue',sans-serif;font-size:18px;letter-spacing:1.5px;margin-bottom:6px}
.footer-brand-desc{font-size:12px;color:rgba(240,238,255,.3);line-height:1.6}
.footer-col-title{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--violet-2);margin-bottom:12px;font-weight:500}
.footer-col a{display:block;font-size:13px;color:rgba(240,238,255,.4);text-decoration:none;margin-bottom:6px;transition:color .15s}
.footer-col a:hover{color:var(--violet-2)}
.footer-copy{font-size:11px;color:rgba(240,238,255,.2);border-top:1px solid var(--border);padding-top:1.25rem}

.player{
  position:fixed;bottom:0;left:0;right:0;height:72px;background:var(--surface);border-top:1px solid rgba(124,58,237,.3);
  display:flex;align-items:center;padding:0 1.5rem;gap:1rem;z-index:200
}
.pl-l{display:flex;align-items:center;gap:12px;flex:1;min-width:0}
.pl-cov{width:44px;height:44px;border-radius:6px;flex-shrink:0;background:linear-gradient(135deg,#2D1B5A,#7C3AED);object-fit:cover}
.pl-tr{min-width:0}
.pl-nm{font-size:13px;font-weight:500;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:220px}
.pl-ar{font-size:11px;color:rgba(240,238,255,.4);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:220px}
.pl-ib,.pl-rb,.pl-b{
  background:transparent;border:none;color:rgba(240,238,255,.45);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:color .15s
}
.pl-ib{width:28px;height:28px;border-radius:50%;font-size:15px}
.pl-ib:hover,.pl-rb:hover,.pl-b:hover{color:var(--text)}
.pl-b svg,.pl-rb svg{width:17px;height:17px;fill:currentColor}
.pl-play{
  width:36px;height:36px;border-radius:50%;background:var(--violet);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s
}
.pl-play:hover{background:#6D28D9}
.pl-play svg{width:15px;height:15px;fill:#fff;margin-left:2px}
.pl-c{display:flex;flex-direction:column;align-items:center;gap:5px;flex:2;min-width:0}
.pl-ctrl{display:flex;align-items:center;gap:14px}
.pl-prog{display:flex;align-items:center;gap:8px;width:100%;max-width:400px}
.pl-time{font-size:11px;color:rgba(240,238,255,.3);min-width:36px}
.pl-time.r{text-align:right}
.pl-bar{flex:1;height:3px;background:rgba(255,255,255,.1);border-radius:2px;position:relative}
.pl-fill{height:100%;width:0%;background:var(--violet);border-radius:2px}
.pl-r{display:flex;align-items:center;gap:8px;flex:1;justify-content:flex-end}
.pl-vol{width:70px;height:3px;background:rgba(255,255,255,.1);border-radius:2px}
.pl-vf{height:100%;width:65%;background:rgba(240,238,255,.4);border-radius:2px}
.pl-open-link{font-size:11px;color:var(--violet-2);text-decoration:none;white-space:nowrap}
.pl-open-link:hover{text-decoration:underline}

.media-modal{
  position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:2rem;background:rgba(10,10,15,.78);z-index:260
}
.media-modal.is-open{display:flex}
.media-dialog{
  width:min(960px,100%);background:var(--surface);border:1px solid rgba(124,58,237,.22);border-radius:16px;overflow:hidden;box-shadow:var(--shadow)
}
.media-header{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem;background:linear-gradient(135deg,#1d1037,#11091f);
  border-bottom:1px solid rgba(124,58,237,.2)
}
.media-title-wrap{min-width:0}
.media-title{font-size:15px;font-weight:500;color:#fff}
.media-meta{font-size:12px;color:rgba(240,238,255,.45);margin-top:2px}
.media-close{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.15);background:transparent;color:rgba(240,238,255,.6);cursor:pointer
}
.media-close:hover{color:#fff;border-color:rgba(255,255,255,.3)}
.media-body{padding:1rem}
.media-embed{position:relative;padding-top:56.25%;border-radius:12px;overflow:hidden;background:#000}
.media-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:none}

.playlist-dialog{
  position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(10,10,15,.78);z-index:270;padding:1.5rem
}
.playlist-dialog.is-open{display:flex}
.playlist-panel{
  width:min(520px,100%);background:var(--surface);border:1px solid rgba(124,58,237,.22);border-radius:16px;overflow:hidden;box-shadow:var(--shadow)
}
.playlist-panel-header{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem;border-bottom:1px solid rgba(255,255,255,.06)}
.playlist-panel-body{padding:1rem 1.25rem;scrollbar-gutter:stable}
.playlist-create-row{display:flex;gap:8px;margin-bottom:1rem}
.create-input{
  flex:1;padding:8px 12px;background:var(--sidebar);border:1px solid rgba(255,255,255,.08);border-radius:8px;color:var(--text);transition:border-color .2s
}
.create-input:focus,.bio-textarea:focus{outline:none;border-color:rgba(124,58,237,.5)}
.create-input::placeholder{color:rgba(240,238,255,.2)}
.playlist-choice-list{display:flex;flex-direction:column;gap:8px;max-height:320px;overflow:auto;scrollbar-gutter:stable}
.playlist-choice{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:10px 12px;background:var(--sidebar);border:1px solid rgba(255,255,255,.06);border-radius:8px
}
.playlist-choice-title{font-size:13px;color:var(--text)}
.playlist-choice-meta{font-size:11px;color:var(--muted-2);margin-top:2px}

.gate{
  max-width:440px;margin:3rem auto 0;text-align:center;display:flex;flex-direction:column;align-items:center;gap:1.25rem
}
.gate-title{font-family:'Bebas Neue',sans-serif;font-size:28px;letter-spacing:1px;color:var(--text)}
.gate-desc{font-size:13px;color:rgba(240,238,255,.45);line-height:1.7;font-weight:300;max-width:340px}
.btn-google{
  display:inline-flex;align-items:center;gap:10px;background:#fff;color:#111;border:none;padding:11px 24px;border-radius:8px;
  font-size:13px;font-weight:500;cursor:pointer;transition:all .2s;box-shadow:0 2px 12px rgba(0,0,0,.3)
}
.btn-google:hover{transform:translateY(-1px);box-shadow:0 4px 20px rgba(0,0,0,.4)}
.dashboard,.account-stack{max-width:900px;display:flex;flex-direction:column;gap:1rem}
.my-space-page .dashboard,
.my-space-page .account-stack{
  width:100%;
  max-width:none
}
.my-space-page .page-shell--private-wide{width:100%;max-width:none}
.my-space-page .padded{padding:1.45rem 1.6rem 1.8rem}
.my-space-page .gate{max-width:560px}
.my-space-page .identity-card{padding:1rem 1.1rem}
.my-space-page .stat-grid{gap:10px;margin-bottom:1.2rem}
.my-space-page .stat-card{padding:.85rem .95rem}
.my-space-page .stat-label{margin-bottom:.35rem}
.my-space-page .stat-value{font-size:24px}
.my-space-page .stat-help{margin-top:.35rem;font-size:11px;line-height:1.35}
.my-space-page .section-head{padding:.8rem 1rem}
.my-space-page .section-body{padding:.85rem 1rem}
.my-space-page .playlist-create-row{margin-bottom:.75rem}
.my-space-page .track-item,
.my-space-page .artist-item{padding:7px 9px}
.my-space-page .playlist-item{padding:10px 12px}
.identity-card{padding:1.25rem;display:flex;align-items:center;gap:1rem}
.avatar{
  width:52px;height:52px;border-radius:50%;flex-shrink:0;background:rgba(124,58,237,.2);border:2px solid rgba(124,58,237,.4);display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;font-size:22px;color:var(--violet-2);overflow:hidden
}
.avatar img{width:100%;height:100%;object-fit:cover}
.id-info{flex:1;min-width:0}
.id-name{font-size:15px;font-weight:500;color:var(--text);margin-bottom:2px}
.id-since{font-size:11px;color:rgba(240,238,255,.35)}
.id-link{display:inline-flex;align-items:center;gap:4px;font-size:11px;color:var(--violet-2);text-decoration:none;margin-top:4px}
.id-link:hover{text-decoration:underline}
.btn-signout{
  display:inline-flex;align-items:center;gap:6px;background:transparent;border:1px solid rgba(255,255,255,.1);color:rgba(240,238,255,.4);
  padding:7px 14px;border-radius:7px;font-size:12px;cursor:pointer;transition:all .2s;flex-shrink:0
}
.btn-signout:hover{color:var(--text);border-color:rgba(255,255,255,.25)}

.section{background:var(--surface);border:1px solid rgba(124,58,237,.12);border-radius:12px;overflow:hidden}
.section-head{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;cursor:pointer;user-select:none;transition:background .15s}
.section-head:hover{background:rgba(255,255,255,.02)}
.section-title{font-size:13px;font-weight:500;color:var(--text);display:flex;align-items:center;gap:8px}
.section-count{font-size:10px;font-weight:600;padding:2px 8px;background:rgba(124,58,237,.12);border-radius:99px;color:var(--violet-2);letter-spacing:.5px}
.section-chevron{transition:transform .2s;color:rgba(240,238,255,.3);flex-shrink:0}
.section.open .section-chevron{transform:rotate(180deg)}
.section-body{padding:1rem 1.25rem;border-top:1px solid rgba(255,255,255,.06);display:none}
.section.open .section-body{display:block}
.form-label{font-size:11px;letter-spacing:.5px;color:rgba(240,238,255,.4);font-weight:500;margin-bottom:6px;display:block}
.bio-textarea{
  width:100%;resize:vertical;min-height:80px;padding:10px 12px;background:var(--sidebar);border:1px solid rgba(255,255,255,.08);border-radius:8px;color:var(--text);line-height:1.5;transition:border-color .2s
}
.form-divider{height:1px;background:rgba(255,255,255,.06);margin:1.25rem 0}
.toggle-row{
  display:flex;align-items:center;justify-content:space-between;padding:10px 12px;background:var(--sidebar);border:1px solid rgba(255,255,255,.06);border-radius:8px;margin-bottom:6px
}
.toggle-label{font-size:13px;color:rgba(240,238,255,.6)}
.toggle{position:relative;width:38px;height:22px;flex-shrink:0}
.toggle input{opacity:0;width:0;height:0}
.toggle-slider{position:absolute;inset:0;border-radius:999px;cursor:pointer;background:rgba(255,255,255,.1);transition:background .2s}
.toggle-slider::before{content:'';position:absolute;width:16px;height:16px;left:3px;top:3px;border-radius:50%;background:#fff;transition:transform .2s}
.toggle input:checked + .toggle-slider{background:var(--violet)}
.toggle input:checked + .toggle-slider::before{transform:translateX(16px)}
.account-action-row{margin-top:1rem}
.account-danger{
  margin-top:1rem;
  padding:.95rem 1rem;
  border-radius:12px;
  border:1px solid rgba(248,113,113,.18);
  background:linear-gradient(180deg,rgba(71,16,28,.42),rgba(20,12,16,.72));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap
}
.account-danger-copy{
  flex:1 1 320px;
  font-size:12px;
  line-height:1.6;
  color:rgba(255,232,232,.76)
}
.owner-admin-copy{
  margin-bottom:.85rem;
  font-size:12px;
  line-height:1.65;
  color:rgba(240,238,255,.58)
}
.owner-admin-list{display:flex;flex-direction:column;gap:8px}
.owner-admin-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  background:var(--sidebar);
  border:1px solid rgba(255,255,255,.06);
  border-radius:10px
}
.owner-admin-cover{
  width:42px;
  height:42px;
  border-radius:10px;
  object-fit:cover;
  flex-shrink:0;
  background:linear-gradient(135deg,#18062d,#5e1aa3);
  border:1px solid rgba(255,255,255,.08)
}
.owner-admin-main{flex:1;min-width:0}
.owner-admin-title{
  font-size:13px;
  font-weight:600;
  color:var(--text);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.owner-admin-meta{
  margin-top:3px;
  font-size:11px;
  line-height:1.5;
  color:rgba(240,238,255,.45)
}
.owner-admin-side{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
  flex-wrap:wrap;
  justify-content:flex-end
}
.owner-admin-value{
  min-width:82px;
  text-align:right
}
.owner-admin-value strong{
  display:block;
  font-size:20px;
  line-height:1;
  color:var(--text)
}
.owner-admin-value span{
  display:block;
  margin-top:4px;
  font-size:10px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:rgba(240,238,255,.35)
}
.owner-admin-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 9px;
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase
}
.owner-admin-status.is-owner{
  background:rgba(124,58,237,.16);
  color:var(--violet-2)
}
.owner-admin-status.is-blocked{
  background:rgba(248,113,113,.14);
  color:#ffb4b4
}
.owner-admin-status.is-active{
  background:rgba(34,197,94,.14);
  color:#86efac
}
.owner-admin-actions{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end
}
.owner-admin-row .btn-secondary,
.owner-admin-row .btn-danger{
  min-height:auto;
  padding:7px 11px;
  font-size:11px
}
.track-list,.artist-list,.playlist-list{display:flex;flex-direction:column;gap:6px}
.track-item,.artist-item{
  display:flex;align-items:center;gap:10px;padding:8px 10px;background:var(--sidebar);border:1px solid rgba(255,255,255,.06);border-radius:8px
}
.artist-avatar-chip{
  width:22px;
  height:22px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}
.track-info{flex:1;min-width:0}
.track-link,.artist-link{color:inherit;text-decoration:none}
.track-link:hover,.artist-link:hover{color:var(--violet-2)}
.track-sub{font-size:11px;color:rgba(240,238,255,.35)}
.artist-name{flex:1;font-size:13px;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.btn-remove{
  flex-shrink:0;background:none;border:none;cursor:pointer;color:rgba(240,238,255,.25);padding:4px;border-radius:4px;font-size:14px;line-height:1;transition:all .15s
}
.btn-remove:hover{color:var(--danger);background:rgba(248,113,113,.1)}
.playlist-item{padding:12px 14px;background:var(--sidebar);border:1px solid rgba(255,255,255,.06);border-radius:8px}
.playlist-head{display:flex;align-items:center;gap:8px;margin-bottom:4px}
.playlist-title{font-size:13px;font-weight:500;color:var(--text);flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.playlist-meta{font-size:11px;color:rgba(240,238,255,.3)}
.playlist-badge{font-size:10px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;padding:2px 8px;border-radius:99px}
.badge-public{background:rgba(34,197,94,.1);color:var(--success)}
.badge-private{background:rgba(255,255,255,.06);color:rgba(240,238,255,.35)}
.playlist-public-link-wrap{margin-top:10px}
.playlist-public-link-label{
  font-size:10px;font-weight:600;letter-spacing:.7px;text-transform:uppercase;color:rgba(240,238,255,.32);margin-bottom:6px
}
.playlist-public-link-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.playlist-public-link{
  flex:1;min-width:220px;font-size:11px;line-height:1.45;color:rgba(240,238,255,.78);text-decoration:none;
  padding:8px 10px;border-radius:8px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap
}
.playlist-public-link:hover{border-color:rgba(124,58,237,.3);color:#fff}
.playlist-actions{display:flex;align-items:center;gap:6px;margin-top:8px;flex-wrap:wrap}
.empty{text-align:center;padding:1.5rem 1rem;font-size:13px;color:rgba(240,238,255,.25);font-style:italic}
.compat-card{
  background:var(--surface);border:1px solid rgba(124,58,237,.15);border-radius:16px;padding:1.5rem;max-width:760px
}

.public-profile-page{
  max-width:1320px;margin:0 auto;display:flex;flex-direction:column;gap:1.5rem;min-height:calc(100vh - 240px)
}
.public-profile-hero{
  background:var(--surface);border:1px solid rgba(124,58,237,.16);border-radius:24px;padding:2rem;
  display:grid;grid-template-columns:minmax(0,1.45fr) minmax(320px,380px);gap:1.5rem;position:relative;overflow:hidden
}
.public-profile-hero::before{
  content:'';position:absolute;top:-120px;right:-40px;width:320px;height:320px;
  background:radial-gradient(circle,rgba(124,58,237,.18),transparent 68%);border-radius:50%;pointer-events:none
}
.public-profile-hero::after{
  content:'';position:absolute;bottom:-120px;left:20%;width:260px;height:260px;
  background:radial-gradient(circle,rgba(236,72,153,.12),transparent 72%);border-radius:50%;pointer-events:none
}
.public-profile-hero-main,.public-profile-hero-side{position:relative;z-index:1;min-width:0}
.public-profile-identity-row{display:flex;align-items:flex-start;gap:1.25rem}
.public-profile-avatar{
  width:112px;height:112px;border-radius:28px;flex-shrink:0;background:linear-gradient(135deg,#32115f,#7C3AED);
  border:1px solid rgba(167,139,250,.28);display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;font-size:42px;color:#fff;overflow:hidden;box-shadow:0 20px 50px rgba(7,8,17,.3)
}
.public-profile-avatar img{width:100%;height:100%;object-fit:cover}
.public-profile-info{min-width:0;flex:1}
.public-profile-kicker{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.public-profile-since{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(240,238,255,.34)}
.public-profile-name{font-family:'Bebas Neue',sans-serif;font-size:clamp(48px,6vw,72px);letter-spacing:1px;color:#fff;line-height:.92;margin:0 0 10px}
.public-profile-handle-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.public-profile-handle{
  font-size:12px;letter-spacing:1.2px;text-transform:uppercase;padding:7px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:rgba(240,238,255,.6)
}
.public-profile-badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.public-profile-badge{
  font-size:11px;letter-spacing:.6px;padding:5px 12px;border-radius:999px;font-weight:500;
  background:rgba(255,255,255,.06);color:rgba(240,238,255,.7);border:1px solid rgba(255,255,255,.08)
}
.public-profile-badge-primary{background:rgba(124,58,237,.14);color:var(--violet-2);border-color:rgba(124,58,237,.26)}
.public-profile-bio{font-size:15px;color:rgba(240,238,255,.58);line-height:1.72;font-weight:300;max-width:760px}
.public-profile-hero-side{display:flex;flex-direction:column;justify-content:space-between;gap:1rem}
.public-profile-hero-note{
  padding:1rem;background:rgba(13,10,24,.62);border:1px solid rgba(124,58,237,.14);border-radius:18px;
  backdrop-filter:blur(8px)
}
.public-profile-hero-note-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:.8rem}
.public-profile-hero-note-list{display:grid;gap:.75rem}
.public-profile-highlight-item{
  padding:.8rem .9rem;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06)
}
.public-profile-highlight-label{font-size:10px;letter-spacing:1.6px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:4px}
.public-profile-highlight-value{font-size:15px;color:var(--text);font-weight:600;line-height:1.35}
.public-profile-actions{display:flex;flex-wrap:wrap;gap:.8rem}
.public-profile-actions .btn-primary,.public-profile-actions .btn-secondary{justify-content:center}
.public-profile-stats{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.public-profile-stat-card{
  background:var(--surface);border:1px solid rgba(124,58,237,.12);border-radius:18px;padding:1.1rem 1rem;
  min-height:110px;display:flex;flex-direction:column;justify-content:flex-end;transition:all .2s
}
.public-profile-stat-card:hover{border-color:rgba(124,58,237,.3);transform:translateY(-2px)}
.public-profile-stat-number{font-family:'Bebas Neue',sans-serif;font-size:34px;letter-spacing:1px;color:#fff;line-height:1;margin-bottom:6px}
.public-profile-stat-label{font-size:11px;color:rgba(240,238,255,.38);letter-spacing:.7px;text-transform:uppercase}
.public-profile-tabs{
  display:flex;flex-wrap:wrap;gap:10px;padding:10px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:18px
}
.public-profile-tabs .tab{
  appearance:none;background:transparent;border:1px solid transparent;border-radius:999px;
  font-size:13px;color:rgba(240,238,255,.52);padding:10px 16px;cursor:pointer;transition:all .2s
}
.public-profile-tabs .tab:hover{color:var(--text);border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.03)}
.public-profile-tabs .tab.active{color:#fff;border-color:rgba(124,58,237,.34);background:rgba(124,58,237,.12)}
.public-profile-tabs .tab:focus-visible{outline:2px solid rgba(167,139,250,.65);outline-offset:2px}
.public-profile-panel{display:none}
.public-profile-panel.active{display:block}
.public-profile-section{padding:1.25rem 1.25rem 1.35rem;border-radius:20px}
.public-profile-section .sec-hdr{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1rem}
.playlist-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.playlist-card{
  display:flex;flex-direction:column;background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(124,58,237,.12);border-radius:20px;overflow:hidden;min-height:100%;transition:all .2s
}
.playlist-card:hover{border-color:rgba(124,58,237,.36);transform:translateY(-2px)}
.playlist-card-media{display:block;padding:14px 14px 0;text-decoration:none}
.playlist-cover{width:100%;aspect-ratio:1/1;display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--bg);border-radius:16px;overflow:hidden}
.playlist-cover-q{width:100%;height:100%;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)}
.playlist-body{padding:14px 14px 16px;display:flex;flex-direction:column;gap:10px;flex:1}
.playlist-card-topline{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.playlist-owner{font-size:11px;color:rgba(240,238,255,.36)}
.playlist-name{font-size:18px;font-weight:600;line-height:1.25;color:var(--text);text-decoration:none}
.playlist-name:hover{color:#fff}
.playlist-count{font-size:12px;color:rgba(240,238,255,.44)}
.playlist-track-samples{display:flex;flex-wrap:wrap;gap:8px}
.playlist-track-chip{
  font-size:11px;color:rgba(240,238,255,.74);padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06)
}
.playlist-card-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto;padding-top:6px;font-size:11px;color:rgba(240,238,255,.34)}
.playlist-public-badge{
  font-size:10px;color:var(--success);background:rgba(34,197,94,.08);border:1px solid rgba(34,197,94,.15);padding:3px 9px;border-radius:999px
}
.public-profile-panel-support{margin-top:1rem}
.public-profile-support{padding-top:1rem;border-top:1px solid rgba(255,255,255,.06)}
.public-profile-support-head{margin-bottom:1rem}
.public-profile-support-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.public-profile-support-card{
  display:flex;flex-direction:column;gap:10px;text-decoration:none;color:inherit;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);border-radius:18px;padding:12px;transition:all .2s
}
.public-profile-support-card:hover{border-color:rgba(124,58,237,.28);transform:translateY(-2px)}
.public-profile-support-cover{
  width:100%;aspect-ratio:1/1;border-radius:14px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a);
  display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Bebas Neue',sans-serif;font-size:26px
}
.public-profile-support-kicker{font-size:10px;letter-spacing:1.6px;text-transform:uppercase;color:rgba(240,238,255,.34)}
.public-profile-support-title{font-size:14px;font-weight:600;color:var(--text);line-height:1.3}
.public-profile-support-meta{font-size:11px;color:rgba(240,238,255,.44);line-height:1.45}
.artists-grid-public{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.artist-showcase-card{
  display:block;background:rgba(255,255,255,.025);border:1px solid rgba(124,58,237,.12);border-radius:20px;overflow:hidden;
  text-decoration:none;color:inherit;transition:all .2s
}
.artist-showcase-card:hover{border-color:rgba(124,58,237,.34);transform:translateY(-2px)}
.artist-showcase-card.compact .artist-showcase-visual{aspect-ratio:1/1}
.artist-showcase-visual{aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,#1a0535,#5a1a9a)}
.artist-showcase-image{
  width:100%;height:100%;object-fit:cover;display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;font-size:34px;color:#fff
}
.artist-showcase-body{padding:14px}
.artist-showcase-name{font-size:17px;font-weight:600;color:var(--text);line-height:1.25;margin-bottom:6px}
.artist-showcase-meta{font-size:12px;color:rgba(240,238,255,.44);line-height:1.5}
.artist-showcase-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.artist-showcase-pill{
  font-size:11px;padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);color:rgba(240,238,255,.72)
}
.public-profile-taste-story{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:14px}
.taste-story-card{
  background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.12);border-radius:18px;padding:1rem
}
.taste-story-label{font-size:10px;letter-spacing:1.8px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:10px}
.taste-story-value{font-family:'Bebas Neue',sans-serif;font-size:34px;line-height:1;color:#fff;margin-bottom:10px}
.taste-story-copy{font-size:12px;color:rgba(240,238,255,.48);line-height:1.55}
.public-profile-taste-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.taste-group-card{
  background:rgba(255,255,255,.025);border:1px solid rgba(124,58,237,.12);border-radius:18px;padding:1rem
}
.taste-group-title{font-size:13px;font-weight:600;color:var(--text);margin-bottom:.9rem}
.taste-pill-row{display:flex;flex-wrap:wrap;gap:10px}
.taste-pill{
  display:inline-flex;align-items:center;gap:8px;padding:7px 11px;border-radius:999px;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);font-size:12px;color:rgba(240,238,255,.82)
}
.taste-pill strong{font-family:'Bebas Neue',sans-serif;font-size:18px;line-height:1;color:var(--violet-2)}
.taste-pill-soft{color:rgba(240,238,255,.74)}
.taste-metric-list{display:grid;gap:10px}
.taste-metric-row{
  display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03);color:rgba(240,238,255,.72)
}
.taste-metric-row strong{font-family:'Bebas Neue',sans-serif;font-size:24px;line-height:1;color:#fff}
.taste-artist-stack{display:grid;gap:10px}
.taste-artist-row{
  display:grid;grid-template-columns:48px 1fr;gap:12px;align-items:center;text-decoration:none;color:inherit;
  padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05)
}
.taste-artist-row:hover{border-color:rgba(124,58,237,.22)}
.taste-artist-avatar{
  width:48px;height:48px;border-radius:14px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a);
  display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Bebas Neue',sans-serif;font-size:22px
}
.taste-artist-name{font-size:14px;font-weight:600;color:var(--text);line-height:1.2}
.taste-artist-meta{font-size:11px;color:rgba(240,238,255,.42);margin-top:4px;line-height:1.45}
.public-profile-favorites-stack{display:flex;flex-direction:column;gap:1rem}
.public-profile-summary-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}
.public-profile-summary-card{
  background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.1);border-radius:18px;padding:1rem
}
.public-profile-summary-value{font-family:'Bebas Neue',sans-serif;font-size:32px;line-height:1;color:#fff;margin-bottom:6px}
.public-profile-summary-label{font-size:11px;color:rgba(240,238,255,.38);letter-spacing:.8px;text-transform:uppercase}
.favorite-cluster{
  background:rgba(255,255,255,.02);border:1px solid rgba(124,58,237,.12);border-radius:20px;padding:1rem
}
.favorite-cluster-head{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1rem}
.favorite-cluster-title{font-size:16px;font-weight:600;color:var(--text)}
.favorite-cluster-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.catalog-mini-card{
  display:grid;grid-template-columns:84px 1fr;gap:12px;align-items:center;text-decoration:none;color:inherit;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);border-radius:18px;padding:12px;transition:all .2s
}
.catalog-mini-card:hover{border-color:rgba(124,58,237,.28);transform:translateY(-2px)}
.catalog-mini-cover{width:84px;height:84px;border-radius:14px;object-fit:cover;background:linear-gradient(135deg,#1a0535,#5a1a9a)}
.catalog-mini-body{min-width:0}
.catalog-mini-kicker{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:4px}
.catalog-mini-title{font-size:15px;font-weight:600;color:var(--text);line-height:1.3;margin-bottom:4px}
.catalog-mini-meta,.catalog-mini-line{font-size:11px;color:rgba(240,238,255,.44);line-height:1.5}
.favorite-cluster-grid-artists{grid-template-columns:repeat(3,minmax(0,1fr))}
.empty-state-card{
  padding:1.35rem;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(124,58,237,.12)
}
.empty-state-kicker{font-size:10px;letter-spacing:1.8px;text-transform:uppercase;color:rgba(240,238,255,.34);margin-bottom:10px}
.empty-state-title{font-size:18px;font-weight:600;color:#fff;line-height:1.25;margin-bottom:8px}
.empty-state-copy{font-size:13px;color:rgba(240,238,255,.48);line-height:1.65;max-width:620px}

.g1{background:linear-gradient(135deg,#1a0535,#5a1a9a)}
.g2{background:linear-gradient(135deg,#05152a,#0a4a7a)}
.g3{background:linear-gradient(135deg,#1a0518,#7a0a5a)}
.g4{background:linear-gradient(135deg,#051a05,#1a6a1a)}
.g5{background:linear-gradient(135deg,#1a1505,#6a5a0a)}
.g6{background:linear-gradient(135deg,#1a0505,#6a1505)}

.is-hidden{display:none!important}

@media (max-width:1280px){
  .release-grid,.catalog-grid{grid-template-columns:repeat(5,1fr)}
  .landmarks-grid{grid-template-columns:repeat(3,1fr)}
  .chart-hero-card{grid-template-columns:1fr}
  .chart-hero-main{grid-template-columns:minmax(0,1.05fr) minmax(240px,.82fr)}
  .chart-grid{grid-template-columns:minmax(0,1.55fr) minmax(340px,.95fr)}
  .contact-hero{grid-template-columns:minmax(0,1fr) minmax(280px,360px)}
  .contact-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact-roster-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .public-profile-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
  .public-profile-summary-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .public-profile-taste-story{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:1100px){
  body{overflow:auto}
  .layout{position:static;display:block;padding-top:48px;padding-bottom:72px}
  .sidebar{display:none}
  .content{overflow:visible}
  .content.playlist-content{overflow:visible}
  .home-hero,.artist-hero{height:auto;min-height:320px}
  .hero-content{padding:2rem;align-items:flex-end}
  .hero-stack{display:none}
  .release-grid,.catalog-grid,.landmarks-grid,.tracks-grid,.artists-grid,.related-grid,.metrics-grid,.social-grid,.more-grid,.coming-grid,.bottom-grid,.stat-grid,.chart-grid{
    grid-template-columns:repeat(2,1fr)
  }
  .chart-grid{grid-template-columns:minmax(0,1.45fr) minmax(320px,.95fr)}
  .chart-hero-main{grid-template-columns:minmax(0,1fr) minmax(220px,.78fr)}
  .chart-summary-strip{grid-template-columns:repeat(3,minmax(0,1fr))}
  .chart-current{grid-template-columns:72px minmax(0,1fr)}
  .chart-current-cover{width:72px;height:72px}
  .chart-player-card{top:64px}
  .public-profile-hero{grid-template-columns:1fr}
  .playlist-grid,.artists-grid-public,.public-profile-taste-groups,.favorite-cluster-grid,.favorite-cluster-grid-artists,.public-profile-support-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .public-profile-stats,.public-profile-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .tabs:not(.public-profile-tabs){gap:8px;padding:8px}
  .tabs:not(.public-profile-tabs) .tab{padding:10px 14px}
  .contact-hero,
  .contact-grid,
  .contact-roster-grid{grid-template-columns:1fr}
  .contact-hero-copy{padding:2rem 1.75rem 1.25rem}
  .contact-hero-visual{padding:0 1.75rem 1.75rem}
  .contact-hero-stack{position:static;flex-direction:row;justify-content:flex-start;margin-top:1rem}
  .contact-hero-stack-card{width:84px;height:84px}
  .playlist-layout-pad{padding:0}
  .playlist-page{display:block;height:auto}
  .playlist-page > .playlist-layout-pad{min-height:auto;overflow:visible}
  .playlist-hero-band{margin:0 1.25rem 1.25rem}
  .playlist-desktop-shell,.playlist-hero-shell,.playlist-body-grid,.playlist-linked-grid{grid-template-columns:1fr}
  .playlist-desktop-shell{height:auto}
  .playlist-wide-shell{width:100%}
  .playlist-action-bar{display:block}
  .playlist-action-copy{margin-bottom:.85rem}
  .playlist-main-column{height:auto;overflow:visible;padding:0}
  .playlist-rail{order:2;max-width:none;height:auto;overflow:visible;background:none;border-left:none;padding:0}
  .chart-stack{min-width:0}
  .chart-row{grid-template-columns:40px 40px 48px minmax(0,1fr)}
  .chart-duration{display:none}
  .footer-inner{grid-template-columns:1fr 1fr}
}

@media (max-width:760px){
  .topnav{padding:0 .9rem}
  .tnav{display:none}
  .tright{gap:6px}
  .tb{padding:5px 10px}
  .padded{padding:1.25rem}
  .public-profile-page{gap:1.25rem;min-height:auto}
  .tabs:not(.public-profile-tabs){gap:8px;padding:8px}
  .tabs:not(.public-profile-tabs) .tab{flex:1 1 140px;padding:10px 12px}
  .public-profile-hero{grid-template-columns:1fr;padding:1.4rem}
  .public-profile-identity-row{display:block}
  .public-profile-avatar{margin-bottom:1rem;width:92px;height:92px;border-radius:24px}
  .public-profile-name{font-size:clamp(38px,15vw,56px)}
  .public-profile-actions{margin-top:.5rem}
  .public-profile-tabs{gap:8px}
  .public-profile-tabs .tab{padding:10px 14px}
  .chart-hero-card{padding:1.35rem}
  .chart-hero-main,.chart-summary-strip,.chart-current{grid-template-columns:1fr}
  .chart-lead-card{grid-template-columns:96px minmax(0,1fr)}
  .chart-lead-cover{width:96px;height:96px}
  .chart-player-card{position:static;top:auto}
  .public-profile-stats,.playlist-grid,.artists-grid-public,.public-profile-taste-story,.public-profile-taste-groups,.favorite-cluster-grid,.favorite-cluster-grid-artists,.public-profile-support-grid{
    grid-template-columns:1fr
  }
  .public-profile-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .catalog-mini-card{grid-template-columns:72px 1fr}
  .catalog-mini-cover{width:72px;height:72px}
  .hero-content{padding:1.5rem}
  .artist-avatar{width:72px;height:72px}
  .album-hero,.release-hero,.hero-card{display:block}
  .album-cover,.hero-cover{width:100%;max-width:260px;height:auto;aspect-ratio:1/1;margin-bottom:1rem}
  .album-title,.page-title{font-size:40px}
  .contact-title{font-size:clamp(42px,11vw,60px)}
  .contact-form__grid,
  .contact-metrics{grid-template-columns:1fr}
  .playlist-hero-band{margin:0 1rem 1rem;border-radius:18px}
  .playlist-hero-shell{padding:1.5rem 1.25rem}
  .playlist-cover-main{max-width:220px}
  .playlist-title{font-size:46px}
  .playlist-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .playlist-tracklist-card .tl-row{grid-template-columns:46px 1fr 64px 32px}
  .playlist-tracklist-card .tl-header{display:none}
  .playlist-tracklist-card .tl-info{display:grid;grid-template-columns:40px minmax(0,1fr);grid-column:auto}
  .playlist-tracklist-card .tl-info > div{display:block;min-width:0}
  .playlist-tracklist-card .tl-artist,.playlist-tracklist-card .tl-release{display:none}
  .hero-right{align-items:flex-start}
  .details-card{width:100%}
  .tl-header{display:none}
  .tl-row{grid-template-columns:42px 1fr 64px 32px}
  .tl-release{display:none}
  .tl-cell-play{justify-content:flex-start}
  .release-grid,.catalog-grid,.landmarks-grid,.tracks-grid,.artists-grid,.related-grid,.metrics-grid,.social-grid,.more-grid,.coming-grid,.bottom-grid,.stat-grid,.chart-grid{
    grid-template-columns:1fr
  }
  .chart-stack{grid-template-columns:1fr;min-width:0;margin-top:0}
  .chart-stack-card{grid-template-columns:36px 52px minmax(0,1fr)}
  .chart-row{grid-template-columns:34px 36px 42px minmax(0,1fr)}
  .footer-inner{grid-template-columns:1fr}
  .player{padding:0 .9rem;gap:.75rem}
  .pl-r{display:none}
  .pl-nm,.pl-ar{max-width:120px}
  .playlist-create-row{flex-direction:column}
  .owner-admin-row{align-items:flex-start;flex-wrap:wrap}
  .owner-admin-side{width:100%;margin-left:0;justify-content:flex-start}
  .owner-admin-value{text-align:left;min-width:0}
}

@media (max-width:1599px){
  .playlist-page{
    --playlist-left-width:320px;
    --playlist-right-width:320px;
  }
  .playlist-main-column{padding:0 1.5rem 1.25rem}
  .playlist-hero-shell{
    grid-template-columns:minmax(220px,280px) minmax(0,1fr);
    gap:1.75rem;
    padding:2.55rem 2.15rem 1.95rem;
    min-height:336px
  }
  .playlist-cover-main{width:min(288px,100%)}
  .playlist-title{font-size:clamp(52px,4.9vw,88px)}
  .playlist-rail{padding:0 .85rem 1rem}
  .playlist-preview-card,.playlist-linked-panel{padding:1.05rem}
  .playlist-sidebar-panel .playlist-related-item{
    grid-template-columns:64px minmax(0,1fr);
    padding:12px
  }
  .playlist-sidebar-panel .playlist-related-thumb{
    width:64px;
    height:64px;
    border-radius:12px
  }
  .playlist-tracklist-card .tracklist-header{padding:.15rem 1.25rem .85rem}
  .playlist-tracklist-card .tl-header,
  .playlist-tracklist-card .tl-row{
    grid-template-columns:56px minmax(0,1.08fr) minmax(100px,.58fr) minmax(124px,.72fr) 68px 32px;
    padding-left:1.25rem;
    padding-right:1.25rem
  }
  .playlist-tracklist-card .tl-header span:nth-child(2){padding-left:56px}
  .playlist-tracklist-card .tl-info{
    grid-template-columns:44px minmax(0,1fr) minmax(100px,.58fr);
    gap:10px
  }
  .playlist-tracklist-card .tl-img{width:44px;height:44px}
}

@media (max-width:1440px){
  .playlist-page{
    --playlist-left-width:280px;
    --playlist-right-width:280px;
  }
  .playlist-main-column{padding:0 1.1rem 1rem}
  .playlist-hero-band{border-radius:20px}
  .playlist-hero-shell{
    grid-template-columns:minmax(180px,220px) minmax(0,1fr);
    gap:1.25rem;
    padding:2.2rem 1.75rem 1.55rem;
    min-height:308px
  }
  .playlist-cover-main{
    width:min(230px,100%);
    border-radius:18px
  }
  .playlist-title{font-size:clamp(48px,4.5vw,76px)}
  .playlist-owner-line{font-size:14px}
  .playlist-rail{padding:0 .7rem .95rem}
  .playlist-preview-card,.playlist-linked-panel{padding:.95rem}
  .playlist-now-cover{width:54px;height:54px}
  .playlist-now-title{font-size:15px}
  .playlist-now-meta{font-size:12px}
  .playlist-tracklist-card .tracklist-header{padding:.1rem 1rem .75rem}
  .playlist-tracklist-card .tl-header{
    grid-template-columns:52px minmax(0,1fr) 66px 32px;
    padding:0 1rem .72rem
  }
  .playlist-tracklist-card .tl-header span:nth-child(2){padding-left:54px}
  .playlist-tracklist-card .tl-header span:nth-child(3),
  .playlist-tracklist-card .tl-header span:nth-child(4){display:none}
  .playlist-tracklist-card .tl-row{
    grid-template-columns:52px minmax(0,1fr) 66px 32px;
    padding:12px 1rem
  }
  .playlist-tracklist-card .tl-info{
    grid-template-columns:42px minmax(0,1fr) minmax(104px,.72fr);
    grid-column:2 / 3
  }
  .playlist-tracklist-card .tl-release{display:none}
}

@media (max-width:1279px){
  .playlist-page{
    --playlist-left-width:232px;
    --playlist-right-width:248px;
    display:grid;
    height:100%
  }
  .playlist-layout .content{overflow:hidden}
  .playlist-layout .content.playlist-content{overflow:hidden}
  .playlist-page > .playlist-layout-pad{min-height:0;overflow:hidden}
  .playlist-desktop-shell{
    grid-template-columns:minmax(0,1fr) var(--playlist-right-width);
    height:100%
  }
  .playlist-main-column{
    height:100%;
    overflow-y:auto;
    padding:0 .85rem 1rem
  }
  .playlist-rail{
    order:0;
    max-width:none;
    height:100%;
    overflow:visible;
    background:var(--sidebar);
    border-left:1px solid var(--border);
    padding:0 .55rem .85rem
  }
  .playlist-hero-shell{
    grid-template-columns:minmax(160px,200px) minmax(0,1fr);
    gap:1rem;
    padding:2rem 1.45rem 1.35rem;
    min-height:284px
  }
  .playlist-cover-main{
    width:min(210px,100%);
    border-radius:16px
  }
  .playlist-title{font-size:clamp(44px,4.8vw,64px)}
  .playlist-owner-line{font-size:13px}
  .playlist-action-bar{padding-bottom:.85rem;margin-bottom:.85rem}
  .playlist-tracklist-card .tracklist-header{padding:0 1rem .7rem}
  .playlist-tracklist-card .tl-header{
    grid-template-columns:52px minmax(0,1fr) 66px 32px;
    padding:0 1rem .7rem
  }
  .playlist-tracklist-card .tl-header span:nth-child(2){padding-left:52px}
  .playlist-tracklist-card .tl-header span:nth-child(3),
  .playlist-tracklist-card .tl-header span:nth-child(4){display:none}
  .playlist-tracklist-card .tl-row{
    grid-template-columns:52px minmax(0,1fr) 66px 32px;
    padding:12px 1rem
  }
  .playlist-tracklist-card .tl-info{
    display:grid;
    grid-template-columns:40px minmax(0,1fr);
    gap:10px;
    grid-column:auto
  }
  .playlist-tracklist-card .tl-info > div{display:block;min-width:0}
  .playlist-tracklist-card .tl-img{width:40px;height:40px}
  .playlist-tracklist-card .tl-name{font-size:14px}
  .playlist-tracklist-card .tl-artist{display:block;font-size:12px}
  .playlist-tracklist-card .tl-release{display:none}
  .playlist-sidebar-panel .playlist-related-item{
    grid-template-columns:60px minmax(0,1fr);
    padding:11px
  }
  .playlist-sidebar-panel .playlist-related-thumb{
    width:60px;
    height:60px
  }
}

@media (min-width:1024px) and (max-width:1100px){
  body{overflow:hidden}
  .playlist-layout{
    display:flex;
    position:fixed;
    top:48px;
    right:0;
    bottom:72px;
    left:0;
    padding-top:0;
    padding-bottom:0
  }
  .playlist-layout .sidebar{
    display:flex;
    width:236px;
    padding:.85rem 0
  }
  .playlist-layout .content{overflow-y:auto;padding:0}
  .playlist-layout .content.playlist-content{overflow-y:auto}
}

@media (max-width:1023px){
  .playlist-layout{position:static;display:block;padding-top:48px;padding-bottom:72px}
  .playlist-layout .sidebar{display:none}
  .playlist-layout .content{overflow:visible}
  .playlist-layout .content.playlist-content{overflow:visible}
  .playlist-page{display:block;height:auto}
  .playlist-page > .playlist-layout-pad{min-height:auto;overflow:visible}
  .playlist-desktop-shell,.playlist-hero-shell,.playlist-body-grid,.playlist-linked-grid{grid-template-columns:1fr}
  .playlist-desktop-shell{height:auto}
  .playlist-main-column{height:auto;overflow:visible;padding:0}
  .playlist-hero-band{margin:0 1rem 1rem;border-radius:18px}
  .playlist-hero-shell{padding:1.5rem 1.15rem 1.15rem;gap:1rem}
  .playlist-cover-main{width:min(220px,100%)}
  .playlist-title{font-size:clamp(34px,8vw,52px)}
  .playlist-owner-line{font-size:12px;gap:8px}
  .playlist-action-bar{display:block;padding:0 1rem .85rem;margin-bottom:.75rem}
  .playlist-action-copy{margin-bottom:.75rem}
  .playlist-tracklist-card .tracklist-header{padding:0 1rem .65rem}
  .playlist-tracklist-card .tl-header{display:none}
  .playlist-tracklist-card .tl-row{
    grid-template-columns:48px minmax(0,1fr) 64px 32px;
    padding:12px 1rem
  }
  .playlist-tracklist-card .tl-info{display:grid;grid-template-columns:40px minmax(0,1fr);grid-column:auto}
  .playlist-tracklist-card .tl-info > div{display:block;min-width:0}
  .playlist-tracklist-card .tl-artist{display:block}
  .playlist-tracklist-card .tl-release{display:none}
  .playlist-rail{
    order:2;
    max-width:none;
    height:auto;
    overflow:visible;
    background:none;
    border-left:none;
    padding:0 1rem 1rem
  }
  .playlist-preview-card,.playlist-linked-panel{padding:1rem}
}

@media (min-width:760px) and (max-width:1023px){
  body{overflow:hidden}
  .playlist-layout{
    display:flex;
    position:fixed;
    top:48px;
    right:0;
    bottom:72px;
    left:0;
    padding-top:0;
    padding-bottom:0
  }
  .playlist-layout .sidebar{display:none}
  .playlist-layout .content{overflow:hidden;padding:0}
  .playlist-layout .content.playlist-content{overflow:hidden}
  .playlist-page{
    --playlist-right-width:228px;
    display:grid;
    height:100%;
    grid-template-rows:minmax(0,1fr) auto
  }
  .playlist-page > .playlist-layout-pad{min-height:0;overflow:hidden}
  .playlist-desktop-shell{
    grid-template-columns:minmax(0,1fr) var(--playlist-right-width);
    height:100%
  }
  .playlist-main-column{
    height:100%;
    overflow-y:auto;
    padding:0 .7rem .9rem .85rem
  }
  .playlist-rail{
    order:0;
    height:100%;
    background:var(--sidebar);
    border-left:1px solid var(--border);
    padding:0 .5rem .8rem
  }
  .playlist-hero-band{margin:0 0 .85rem;border-radius:18px}
  .playlist-hero-shell{
    grid-template-columns:minmax(130px,160px) minmax(0,1fr);
    gap:.9rem;
    padding:1.65rem 1.1rem 1.1rem;
    min-height:248px
  }
  .playlist-cover-main{
    width:min(172px,100%);
    border-radius:14px
  }
  .playlist-title{font-size:clamp(38px,5.2vw,50px)}
  .playlist-owner-line{font-size:12px}
  .playlist-action-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.75rem;
    padding:0 0 .7rem;
    margin-bottom:.75rem
  }
  .playlist-tracklist-card .tracklist-header{padding:0 .85rem .6rem}
  .playlist-tracklist-card .tl-header{display:none}
  .playlist-tracklist-card .tl-row{
    grid-template-columns:46px minmax(0,1fr) 62px 30px;
    padding:11px .85rem
  }
  .playlist-tracklist-card .tl-info{
    display:grid;
    grid-template-columns:38px minmax(0,1fr);
    gap:9px;
    grid-column:auto
  }
  .playlist-tracklist-card .tl-info > div{display:block;min-width:0}
  .playlist-tracklist-card .tl-img{width:38px;height:38px}
  .playlist-tracklist-card .tl-name{font-size:13px}
  .playlist-tracklist-card .tl-artist{display:block;font-size:11px}
  .playlist-tracklist-card .tl-release{display:none}
  .playlist-preview-card,.playlist-linked-panel{padding:.85rem}
  .playlist-now-cover{width:48px;height:48px}
  .playlist-now-title{font-size:14px}
  .playlist-now-meta{font-size:11px}
  .playlist-preview-card .yt-wrap{min-height:132px}
}

@media (max-width:760px){
  .playlist-hero-shell{padding:1.5rem 1rem 1.05rem;min-height:auto}
  .playlist-cover-main{width:min(190px,100%)}
  .playlist-title{font-size:42px}
  .playlist-owner-line{font-size:11px}
  .playlist-tracklist-card .tl-row{grid-template-columns:46px minmax(0,1fr) 64px 32px}
  .playlist-tracklist-card .tl-info{grid-template-columns:40px minmax(0,1fr)}
  .playlist-tracklist-card .tl-artist{display:none}
}

/* Public playlist restoration */
.playlist-layout{
  --playlist-left-width:208px;
  --playlist-right-width:210px;
}

.playlist-layout .sidebar.playlist-left-sidebar{
  width:var(--playlist-right-width);
  display:block;
  overflow:hidden;
  padding:18px 16px;
  background:var(--sidebar);
  border-right:1px solid var(--border);
}

.playlist-left-sidebar .sb-sec{
  padding:0;
  margin:0;
}

.playlist-left-sidebar .sb-label{
  margin:0 0 10px;
  font-size:10px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(240,238,255,.42);
}

.playlist-left-sidebar .pl-box{
  margin:0;
  padding:14px 14px 12px;
  border-radius:12px;
  background:rgba(124,58,237,.08);
  border:1px solid rgba(124,58,237,.18);
}

.playlist-left-sidebar .pl-box-t{
  font-size:13px;
  font-weight:600;
  color:#fff;
  margin-bottom:6px;
}

.playlist-left-sidebar .pl-box-tx{
  font-size:11px;
  line-height:1.5;
  color:rgba(240,238,255,.46);
  margin-bottom:10px;
}

.playlist-left-sidebar .pl-box-btn{
  width:auto;
  min-width:0;
}

.playlist-left-sidebar .sb-div{
  margin:.85rem 0;
  height:1px;
  background:rgba(255,255,255,.05)
}

.playlist-left-sidebar .playlist-sidebar-panel{
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none
}

.playlist-left-sidebar .playlist-related-list{
  gap:10px
}

.playlist-left-sidebar .playlist-related-item{
  grid-template-columns:62px minmax(0,1fr);
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06)
}

.playlist-left-sidebar .playlist-related-item.is-current{
  background:rgba(124,58,237,.12);
  border-color:rgba(124,58,237,.34)
}

.playlist-left-sidebar .playlist-related-thumb{
  width:62px;
  height:62px;
  border-radius:14px
}

.playlist-left-sidebar .playlist-related-thumb-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  overflow:hidden;
  padding:0;
  background:#090914
}

.playlist-left-sidebar .playlist-profile-avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Bebas Neue',sans-serif;
  font-size:24px;
  color:#fff;
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}

.playlist-left-sidebar img.playlist-profile-avatar{
  object-fit:cover
}

.playlist-left-sidebar .playlist-related-meta{
  white-space:normal;
  line-height:1.45
}

.playlist-left-sidebar .playlist-sidebar-empty{
  padding:2px 2px 0;
  white-space:normal;
  line-height:1.5
}

.playlist-layout .content.playlist-content{
  overflow:hidden;
  padding:0;
  background:#07080f;
}

.playlist-page-shell{
  height:100%;
}

.playlist-page{
  display:block;
  height:100%;
  background:#07080f;
}

.playlist-page .breadcrumb{
  display:none;
}

.playlist-page > .playlist-layout-pad{
  height:100%;
  min-height:0;
  overflow:hidden;
}

.playlist-fixed-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) var(--playlist-right-width);
  height:100%;
  min-height:0;
}

.playlist-main-column{
  min-width:0;
  height:100%;
  overflow-y:auto;
  padding:18px 18px 92px;
  margin:0;
  background:#07080f;
  scrollbar-gutter:stable;
}

.playlist-right-rail{
  display:flex;
  align-items:flex-start;
  height:100%;
  padding:18px 14px;
  background:var(--sidebar);
  border-left:1px solid var(--border);
  overflow:hidden;
}

.playlist-page .home-footer{
  display:none!important;
}

.playlist-hero-band{
  margin:0 0 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(210,94,136,.96) 0%,rgba(135,25,81,.92) 44%,rgba(18,8,16,.98) 100%),
    radial-gradient(circle at 16% 24%,rgba(255,255,255,.16),transparent 24%),
    radial-gradient(circle at 84% 14%,rgba(124,58,237,.18),transparent 24%);
  box-shadow:0 24px 56px rgba(0,0,0,.36);
}

.playlist-hero-shell{
  display:grid;
  grid-template-columns:176px minmax(0,1fr);
  gap:22px;
  align-items:end;
  padding:20px 22px 16px;
  min-height:208px;
}

.playlist-cover-main{
  width:172px;
  height:172px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 50px rgba(7,8,15,.42);
}

.playlist-kicker{
  margin:0 0 8px;
  font-size:10px;
  letter-spacing:1.9px;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  font-weight:700;
}

.playlist-title{
  margin:0 0 10px;
  font-family:'DM Sans',sans-serif;
  font-size:32px;
  line-height:1.05;
  letter-spacing:0;
  font-weight:700;
  color:#fff;
}

.playlist-owner-line{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.78);
}

.playlist-owner-dot{
  width:16px;
  height:16px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:9px;
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
}

.playlist-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 14px;
}

.playlist-action-row .btn-primary,
.playlist-action-row .btn-secondary{
  height:34px;
  border-radius:8px;
  font-size:11px;
  letter-spacing:0;
}

.playlist-tracklist-card{
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  overflow:visible;
}

.playlist-tracklist-card .tracklist-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 0 10px;
  margin:0 0 6px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.playlist-tracklist-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.playlist-tracklist-card .section-title-main{
  font-size:18px;
  line-height:1.1;
}

.playlist-tracklist-browse{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:rgba(240,238,255,.44);
  font-size:10px;
  letter-spacing:.5px;
  text-decoration:none;
  white-space:nowrap;
}

.playlist-tracklist-browse:hover{
  border-color:rgba(124,58,237,.22);
  color:#f0eeff;
  background:rgba(124,58,237,.1);
}

.playlist-tracklist-card .tl-header{
  display:grid;
  grid-template-columns:52px minmax(0,1.25fr) minmax(108px,.68fr) minmax(136px,.84fr) 54px;
  padding:0 0 10px;
  margin:0;
  gap:0;
}

.playlist-tracklist-card .tl-header span:nth-child(2){
  padding-left:0;
}

.playlist-tracklist-card .tl-row{
  display:grid;
  grid-template-columns:52px minmax(0,1.25fr) minmax(108px,.68fr) minmax(136px,.84fr) 54px;
  align-items:center;
  gap:0;
  padding:11px 0;
  margin:0;
  border-radius:0;
  position:relative;
}

.playlist-tracklist-card .tl-row + .tl-row{
  border-top:1px solid rgba(255,255,255,.04);
}

.playlist-tracklist-card .tl-row::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:2px;
  background:transparent;
}

.playlist-tracklist-card .tl-row:hover{
  background:rgba(255,255,255,.02);
}

.playlist-tracklist-card .tl-row.active,
.playlist-tracklist-card .tl-row.playing{
  background:linear-gradient(90deg,rgba(72,31,123,.7),rgba(49,20,86,.32));
}

.playlist-tracklist-card .tl-row.active::before,
.playlist-tracklist-card .tl-row.playing::before{
  background:rgba(196,160,255,.95);
}

.playlist-tracklist-card .tl-cell-play{
  display:flex;
  align-items:center;
  gap:8px;
}

.playlist-tracklist-card .tl-btn{
  width:26px;
  height:26px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.playlist-tracklist-card .tl-btn svg{
  width:13px;
  height:13px;
}

.playlist-tracklist-card .tl-num{
  font-size:12px;
  color:rgba(240,238,255,.4);
}

.playlist-tracklist-card .tl-info{
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:12px;
  align-items:center;
  min-width:0;
}

.playlist-tracklist-card .tl-info > div{
  display:block;
  min-width:0;
}

.playlist-tracklist-card .tl-copy{
  min-width:0;
}

.playlist-tracklist-card .tl-img{
  width:40px;
  height:40px;
  border-radius:8px;
  object-fit:cover;
}

.playlist-tracklist-card .tl-name{
  display:block;
  min-width:0;
  font-size:13px;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.playlist-tracklist-card .tl-artist,
.playlist-tracklist-card .tl-release,
.playlist-tracklist-card .tl-duration{
  font-size:12px;
  color:rgba(240,238,255,.52);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.playlist-tracklist-card .tl-duration{
  text-align:right;
  padding-right:4px;
}

.playlist-active-card{
  width:100%;
  padding:12px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(20,20,31,.98),rgba(12,12,20,.98));
  border:1px solid rgba(255,255,255,.06);
}

.playlist-preview-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.playlist-side-label{
  margin:0;
  font-size:9px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(240,238,255,.44);
}

.playlist-current-state{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  font-size:10px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(240,238,255,.6);
}

.playlist-now-playing{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:10px;
  align-items:center;
  padding:0;
  margin:0 0 12px;
  background:none;
  border:none;
}

.playlist-now-cover{
  width:72px;
  height:72px;
  border-radius:12px;
  object-fit:cover;
}

.playlist-now-copy{
  min-width:0;
}

.playlist-now-title{
  font-size:15px;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.playlist-now-meta{
  font-size:11px;
  line-height:1.45;
  color:rgba(240,238,255,.5);
  white-space:normal;
}

.playlist-active-card .btn-secondary{
  width:100%;
  height:32px;
  justify-content:center;
  border-radius:8px;
  font-size:11px;
}

.playlist-footer-mini{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}

.playlist-footer-brand{
  margin-bottom:6px;
  font-size:11px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:#fff;
}

.playlist-footer-mini .footer-copy{
  margin:0;
  padding:0;
  border:0;
  background:none;
  font-size:11px;
  line-height:1.55;
  color:rgba(240,238,255,.4);
}

@media (max-width:1023px){
  .playlist-layout{
    position:static;
    display:block;
    padding-top:48px;
    padding-bottom:72px;
  }

  .playlist-layout .sidebar.playlist-left-sidebar{
    display:none;
  }

  .playlist-layout .content.playlist-content{
    overflow:visible;
  }

  .playlist-page-shell,
  .playlist-page,
  .playlist-page > .playlist-layout-pad,
  .playlist-fixed-layout{
    height:auto;
    min-height:auto;
    display:block;
  }

  .playlist-main-column{
    height:auto;
    overflow:visible;
    padding:0 1rem 1rem;
  }

  .playlist-right-rail{
    height:auto;
    padding:0 1rem 1rem;
    background:none;
    border-left:none;
  }

  .playlist-hero-shell{
    grid-template-columns:1fr;
    gap:14px;
    padding:16px;
    min-height:auto;
  }

  .playlist-cover-main{
    width:min(190px,100%);
    height:auto;
  }

  .playlist-title{
    font-size:28px;
  }

  .playlist-action-row{
    gap:8px;
    margin-bottom:12px;
  }

  .playlist-tracklist-browse{
    display:none;
  }

  .playlist-tracklist-card .tl-header{
    display:none;
  }

  .playlist-tracklist-card .tl-row{
    grid-template-columns:46px minmax(0,1fr) 58px;
    padding:11px 0;
  }

  .playlist-tracklist-card .tl-artist,
  .playlist-tracklist-card .tl-release{
    display:none;
  }

  .playlist-tracklist-card .tl-info{
    grid-template-columns:40px minmax(0,1fr);
    gap:10px;
  }

  .playlist-active-card{
    padding:12px;
  }
}

.yt-btn.is-hidden{
  display:none!important;
}

.active-track-media-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
  padding:1rem;
  border-radius:20px;
  background:linear-gradient(180deg,rgba(19,19,28,.96),rgba(10,10,16,.98));
  border:1px solid rgba(124,58,237,.16);
  box-shadow:0 18px 42px rgba(0,0,0,.24)
}

.active-track-media-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px
}

.active-track-media-kicker{
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(240,238,255,.42)
}

.active-track-media-state{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  font-size:10px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(240,238,255,.58)
}

.active-track-media-state::before{
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(240,238,255,.28)
}

.active-track-media-state.is-playing::before{
  background:#22c55e;
  box-shadow:0 0 12px rgba(34,197,94,.55)
}

.active-track-media-player{
  width:100%;
  aspect-ratio:16/9;
  min-height:0;
  border-radius:18px
}

.active-track-media-placeholder.is-static{
  cursor:default
}

.active-track-media-now{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:12px;
  align-items:center;
  min-width:0;
  padding:10px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06)
}

.active-track-media-cover{
  width:72px;
  height:72px;
  border-radius:14px;
  object-fit:cover;
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}

.active-track-media-copy{
  min-width:0
}

.active-track-media-title{
  font-size:18px;
  line-height:1.2;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.active-track-media-meta{
  margin-top:5px;
  font-size:12px;
  line-height:1.55;
  color:rgba(240,238,255,.5)
}

.active-track-media-open{
  width:100%;
  justify-content:center;
  min-height:40px;
  border-radius:12px
}

.release-wide-hero--with-media{
  grid-template-columns:220px minmax(0,1fr) 392px
}

.release-wide-media-column{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  min-width:0;
  width:392px;
  max-width:392px;
  flex:0 0 392px
}

.release-wide-media-column .active-track-media-card{
  width:100%;
  align-self:flex-start
}

.active-track-media-card .active-track-media-top,
.active-track-media-card .active-track-media-now,
.active-track-media-card .active-track-media-open{
  display:none
}

.active-track-media-card{
  gap:0;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none
}

.active-track-media-player{
  margin-top:0;
  border-radius:18px;
  overflow:hidden
}

body.release-view-page .release-wide-hero.release-wide-hero--with-media{
  grid-template-columns:220px minmax(0,1fr) 392px;
  align-items:start
}

body.track-view-page .release-wide-hero.release-wide-hero--with-media{
  grid-template-columns:190px minmax(0,1fr) 338px;
  gap:1rem;
  padding:.95rem 1.05rem;
  align-items:start
}

body.track-view-page .release-wide-hero.release-wide-hero--with-media .release-wide-media-column{
  width:338px;
  max-width:338px;
  flex-basis:338px;
  align-self:start
}

.chart-hero-main{
  grid-template-columns:minmax(0,1.02fr) 320px;
  align-items:stretch
}

.chart-hero-main > .active-track-media-card{
  height:100%;
  align-self:stretch
}

.chart-hero-main .active-track-media-player{
  height:100%;
  min-height:0;
  aspect-ratio:auto
}

.playlist-fixed-layout{
  grid-template-columns:minmax(0,1fr)
}

.playlist-hero-shell--with-media{
  grid-template-columns:176px minmax(0,1fr) 313px;
  align-items:stretch
}

.playlist-hero-media-column{
  display:flex;
  align-items:stretch;
  min-width:0;
  width:313px;
  max-width:313px;
  flex:0 0 313px
}

.playlist-hero-media-column .active-track-media-card{
  width:100%
}

.playlist-tracklist-card .tl-header{
  grid-template-columns:74px minmax(0,1.2fr) minmax(140px,.82fr) 76px;
  padding:0 0 .85rem
}

.playlist-tracklist-card .tl-row{
  grid-template-columns:74px minmax(0,1.2fr) minmax(140px,.82fr) 76px;
  gap:12px;
  align-items:center;
  padding:12px 0
}

.playlist-tracklist-card .tl-cell-play{
  display:flex;
  align-items:center;
  gap:10px
}

.playlist-tracklist-card .tl-btn{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .15s
}

.playlist-tracklist-card .tl-btn:hover{
  background:rgba(124,58,237,.18);
  border-color:rgba(124,58,237,.34)
}

.playlist-tracklist-card .tl-btn svg{
  width:14px;
  height:14px;
  fill:currentColor;
  margin-left:2px
}

.playlist-tracklist-card .tl-num{
  font-size:22px;
  line-height:1;
  font-family:'Bebas Neue',sans-serif;
  letter-spacing:1px;
  color:rgba(240,238,255,.52)
}

.playlist-tracklist-card .tl-info{
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:12px;
  align-items:center;
  min-width:0
}

.playlist-tracklist-card .tl-img{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:cover;
  background:linear-gradient(135deg,#1a0535,#5a1a9a)
}

.playlist-tracklist-card .tl-name{
  display:block;
  font-size:15px;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.playlist-tracklist-card .tl-name:hover{
  color:var(--violet-2)
}

.playlist-tracklist-card .tl-artist,
.playlist-tracklist-card .tl-release,
.playlist-tracklist-card .tl-duration{
  font-size:13px;
  color:rgba(240,238,255,.5)
}

.playlist-tracklist-card .tl-release{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.playlist-tracklist-card .tl-duration{
  text-align:right
}

@media (max-width:1279px){
  .release-wide-hero--with-media{
    grid-template-columns:200px minmax(0,1fr) 356px
  }

  .release-wide-media-column{
    width:356px;
    max-width:356px;
    flex-basis:356px
  }

  body.track-view-page .release-wide-hero.release-wide-hero--with-media{
    grid-template-columns:176px minmax(0,1fr) 313px
  }

  body.track-view-page .release-wide-hero.release-wide-hero--with-media .release-wide-media-column{
    width:313px;
    max-width:313px;
    flex-basis:313px
  }

  .playlist-hero-shell--with-media{
    grid-template-columns:160px minmax(0,1fr) 284px
  }

  .playlist-hero-media-column{
    width:284px;
    max-width:284px;
    flex-basis:284px
  }

  .chart-hero-main{
    grid-template-columns:minmax(0,1fr) 296px
  }
}

@media (max-width:1023px){
  .release-wide-hero--with-media,
  .playlist-hero-shell--with-media,
  .chart-hero-main{
    grid-template-columns:1fr
  }

  body.track-view-page .release-wide-hero.release-wide-hero--with-media,
  body.release-view-page .release-wide-hero.release-wide-hero--with-media{
    grid-template-columns:1fr
  }

  .release-wide-media-column,
  .playlist-hero-media-column{
    width:100%;
    max-width:none;
    flex:1 1 auto
  }
}

@media (max-width:767px){
  .active-track-media-card{
    padding:.95rem
  }

  .active-track-media-now{
    grid-template-columns:60px minmax(0,1fr)
  }

  .active-track-media-cover{
    width:60px;
    height:60px
  }

  .active-track-media-title{
    font-size:16px
  }

  .playlist-tracklist-card .tl-header{
    display:none
  }

  .playlist-tracklist-card .tl-row{
    grid-template-columns:74px minmax(0,1fr) 62px
  }

  .playlist-tracklist-card .tl-release{
    display:none
  }
}
