*{box-sizing:border-box}
:root{
  --bg:#050814;
  --bar:#202020;
  --red:#ef233c;
  --orange:#ff6b2b;
  --cyan:#1fc8de;
  --text:#fff;
  --muted:#b8c7e8;
  --line:#304466;
}
body{
  margin:0;
  min-height:100vh;
  background:radial-gradient(circle at top left,#17294d,#050814 58%);
  color:var(--text);
  font-family:Segoe UI,Arial,sans-serif;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}
.recc-shell{width:min(1100px,100%)}
.recc-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.recc-title h1{margin:0;font-size:28px}
.recc-title p{margin:6px 0 0;color:var(--muted);font-weight:700}
.live-badge{
  background:rgba(239,35,60,.15);
  border:1px solid rgba(239,35,60,.55);
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.repe-player{
  width:100%;
  min-height:132px;
  background:var(--bar);
  display:grid;
  grid-template-columns:132px 1fr;
  align-items:center;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(0,0,0,.45);
}
.cover-wrap{
  width:132px;
  height:132px;
  background:#101010;
  overflow:hidden;
}
.cover-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.main{padding:18px 20px;min-width:0}
.topline{
  display:grid;
  grid-template-columns:58px 62px 1fr 74px 190px;
  gap:14px;
  align-items:center;
}
.play-btn{
  width:58px;height:58px;border-radius:50%;
  border:0;background:#3a3a3a;color:#fff;
  font-size:25px;font-weight:900;cursor:pointer;
}
.play-btn:hover{background:var(--orange)}
.time{font-weight:800;text-align:center;white-space:nowrap}
.progress-wrap{
  height:9px;background:#121a2d;border-radius:999px;overflow:hidden;
}
.progress-wrap.hidden{opacity:.45}
.progress-bar{
  height:100%;width:0;background:var(--cyan);border-radius:999px;
}
.volume-box{display:flex;align-items:center;gap:10px;justify-content:flex-end}
.volume-box input{width:135px;accent-color:var(--cyan)}
.nowline{
  margin-top:14px;
  display:grid;
  grid-template-columns:auto auto 1fr;
  gap:12px;
  align-items:center;
  min-width:0;
}
.note{
  background:var(--red);
  width:32px;height:32px;border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.label{font-weight:900;white-space:nowrap}
.marquee{overflow:hidden;white-space:nowrap;min-width:0}
.marquee-inner{
  display:inline-flex;
  gap:70px;
  animation:marquee var(--marquee-duration,22s) linear infinite;
}
.marquee.paused .marquee-inner{animation-play-state:paused}
.marquee-text{font-size:18px;font-weight:700}
.meta-row{
  margin-top:12px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:760px){
  body{padding:12px}
  .recc-title{display:block}
  .live-badge{display:inline-block;margin-top:12px}
  .repe-player{grid-template-columns:96px 1fr;min-height:112px}
  .cover-wrap{width:96px;height:112px}
  .main{padding:12px}
  .topline{grid-template-columns:52px 54px 1fr 62px}
  .volume-box{grid-column:1/-1;justify-content:flex-start}
  .volume-box input{width:100%}
  .nowline{grid-template-columns:auto 1fr}
  .label{display:none}
  .marquee-text{font-size:15px}
}
