:root{
  --bg:#070707;
  --panel:#111;
  --panel-2:#171717;
  --text:rgba(255,255,255,.9);
  --muted:rgba(255,255,255,.64);
  --gold:#f0b429;
  --gold-soft:rgba(240,180,41,.18);
  --line:rgba(255,255,255,.10);
  --radius:18px;
  --shadow:0 22px 70px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Arial,Helvetica,sans-serif}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select{font:inherit}

.lc-page{
  min-height:100vh;
  background:
    radial-gradient(circle at top, rgba(240,180,41,.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 24%),
    var(--bg);
}

.lc-shell{
  width:min(1500px, calc(100% - 34px));
  margin:0 auto;
  padding:26px 0 60px;
}

.lc-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}

.lc-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.lc-brand img{
  width:clamp(110px, 16vw, 180px);
  height:auto;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.45));
}

.lc-mini-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.lc-chip{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  transition:.25s ease;
}
.lc-chip:hover{border-color:rgba(240,180,41,.35);color:#fff;background:rgba(240,180,41,.08)}

.lc-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.42fr) minmax(320px, .9fr);
  gap:32px;
  align-items:start;
}

.lc-card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.lc-cover-wrap{padding:18px}
.lc-cover-stage{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:14px;
  background:#000;
}
.lc-cover-stage::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.07), inset 0 -120px 160px rgba(0,0,0,.15);
}
.lc-cover-stage img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:lcCoverFade 20s infinite;
}
.lc-cover-stage img:nth-child(1){animation-delay:0s}
.lc-cover-stage img:nth-child(2){animation-delay:5s}
.lc-cover-stage img:nth-child(3){animation-delay:10s}
.lc-cover-stage img:nth-child(4){animation-delay:15s}

@keyframes lcCoverFade{
  0%,20%{opacity:0}
  5%,25%{opacity:1}
  30%,100%{opacity:0}
}

.lc-side{padding:18px}
.lc-meta{padding:6px 2px 18px}
.lc-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--gold-soft);
  color:#f6cb66;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.lc-title{
  font-size:clamp(34px,5vw,64px);
  line-height:.94;
  letter-spacing:.01em;
  margin:0 0 10px;
}
.lc-artist{
  font-size:clamp(18px,2vw,24px);
  color:var(--muted);
  margin:0 0 14px;
}
.lc-blurb{
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.6;
  margin:0 0 18px;
}
.lc-statrow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.lc-stat{
  min-width:94px;
  padding:11px 13px;
  border-radius:12px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
}
.lc-stat-label{
  display:block;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:4px;
}
.lc-stat-value{font-size:15px;color:#fff}

.lc-player{
  padding:14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.07);
}

.lc-screen{
  position:relative;
  overflow:hidden;
  min-height:170px;
  border-radius:14px;
  background:
    radial-gradient(circle at 50% 20%, rgba(240,180,41,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.25)),
    #0e0e0e;
  border:1px solid rgba(255,255,255,.06);
  padding:14px;
  margin-bottom:12px;
}
.lc-screen::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%, transparent 70%, rgba(255,255,255,.02));
}

.lc-now{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:14px;
  align-items:center;
}
.lc-now-art{
  width:120px;
  aspect-ratio:1/1;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}
.lc-now-art img{width:100%;height:100%;object-fit:cover}
.lc-now-copy{min-width:0}
.lc-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#f6cb66;
  margin-bottom:8px;
}
.lc-track-title{
  font-size:clamp(22px, 2.2vw, 32px);
  line-height:1.05;
  margin:0 0 6px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.lc-track-artist{
  font-size:15px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.lc-track-counter{margin-top:12px;color:var(--muted);font-size:14px}

.lc-bars{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  display:flex;
  align-items:flex-end;
  gap:4px;
  height:38px;
  opacity:.75;
}
.lc-bar{
  flex:1;
  min-width:4px;
  border-radius:999px 999px 2px 2px;
  background:linear-gradient(180deg, #f6cb66, rgba(240,180,41,.18));
  transform-origin:bottom;
  animation:lcMeter 1.25s infinite ease-in-out;
}
.lc-bar:nth-child(2n){animation-duration:1.6s}
.lc-bar:nth-child(3n){animation-duration:1.05s}
.lc-bar:nth-child(4n){animation-duration:1.9s}
@keyframes lcMeter{
  0%,100%{transform:scaleY(.18)}
  50%{transform:scaleY(1)}
}

.lc-controls{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
}
.lc-play{
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:linear-gradient(180deg, #f3c65c, #d99d13);
  color:#000;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.lc-progress-wrap{display:grid;gap:6px}
.lc-progress{
  width:100%;
  appearance:none;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  outline:none;
}
.lc-progress::-webkit-slider-thumb{
  appearance:none;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#f6cb66;
  border:none;
}
.lc-times{display:flex;justify-content:space-between;font-size:12px;color:var(--muted)}
.lc-navbtn{
  border:none;
  background:rgba(255,255,255,.05);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;
}

.lc-tracklist{margin-top:18px}
.lc-section-title{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#f6cb66;
  margin:0 0 12px;
}
.lc-song{
  display:grid;
  grid-template-columns:44px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  width:100%;
  text-align:left;
  border:none;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
  color:inherit;
  border-radius:14px;
  padding:12px;
  margin:0 0 10px;
  cursor:pointer;
  transition:.22s ease;
}
.lc-song:hover,.lc-song.is-active{background:rgba(240,180,41,.08);border-color:rgba(240,180,41,.24)}
.lc-song-num{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.05);color:#f6cb66;font-weight:bold
}
.lc-song-copy{min-width:0}
.lc-song-title{font-size:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lc-song-meta{font-size:13px;color:var(--muted);margin-top:4px}
.lc-song-time{font-size:13px;color:var(--muted)}

.lc-bottom{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  margin-top:24px;
}
.lc-notes,.lc-links{padding:20px}
.lc-copy p,.lc-copy li{color:rgba(255,255,255,.8);line-height:1.65}
.lc-copy ul{padding-left:18px;margin:12px 0 0}
.lc-link-grid{display:grid;gap:12px}
.lc-link-card{
  display:block;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  transition:.2s ease;
}
.lc-link-card:hover{background:rgba(240,180,41,.08);border-color:rgba(240,180,41,.25)}
.lc-link-title{display:block;font-size:15px;color:#fff;margin-bottom:4px}
.lc-link-sub{display:block;font-size:13px;color:var(--muted)}

@media (max-width: 1080px){
  .lc-layout,.lc-bottom{grid-template-columns:1fr}
}
@media (max-width: 700px){
  .lc-shell{width:min(100% - 22px, 1500px);padding-top:20px}
  .lc-topbar{flex-direction:column;align-items:flex-start}
  .lc-now{grid-template-columns:84px minmax(0,1fr)}
  .lc-now-art{width:84px}
  .lc-controls{grid-template-columns:auto 1fr auto}
  .lc-title{font-size:36px}
  .lc-song{grid-template-columns:38px minmax(0,1fr) auto;padding:10px}
  .lc-song-num{width:38px;height:38px}
}
