:root{
  --bg:#0b0f19;
  --panel:#101a2b;
  --panel2:#0f1524;
  --text:#e8eefc;
  --muted:#a9b4cf;
  --line:rgba(255,255,255,.08);
  --brand:#2b7bff;
  --brand2:#15d1ff;
  --ok:#1bd760;
  --warn:#ffcc00;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(43,123,255,.22), transparent 55%),
              radial-gradient(1200px 500px at 90% 10%, rgba(21,209,255,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  padding-bottom: 120px; /* espaço pro player + nav */
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:980px; margin:0 auto; padding:16px; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11,15,25,.65);
  border-bottom: 1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  max-width:980px;
  margin:0 auto;
}

.brand .left{ display:flex; align-items:center; gap:12px; }
.logo{
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow: var(--shadow);
}
.brand h1{ margin:0; font-size:16px; letter-spacing:.3px; }
.brand small{ color:var(--muted); display:block; margin-top:2px; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  transition: .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn-primary{
  border: 0;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#08101f;
  font-weight: 700;
}
.btn-outline{ border-color: rgba(43,123,255,.35); }

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

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(min-width:880px){
  .grid.cols-2{ grid-template-columns: 1.25fr .75fr; }
  .grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
}

.hero{
  padding:18px;
  background: linear-gradient(135deg, rgba(43,123,255,.18), rgba(21,209,255,.08));
}
.hero .row{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.hero h2{ margin:0 0 8px 0; font-size:22px; }
.hero p{ margin:0; color:var(--muted); line-height:1.5; }
.badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.badge{
  font-size:12px; color:var(--muted);
  border: 1px solid var(--line);
  padding:6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.section-title{
  display:flex; align-items:center; justify-content:space-between;
  margin: 18px 2px 10px;
}
.section-title h3{ margin:0; font-size:16px; }
.section-title span{ color:var(--muted); font-size:12px; }

.kpi{
  padding:14px;
}
.kpi strong{ display:block; font-size:18px; }
.kpi small{ color:var(--muted); }

.list{
  margin:0; padding:0; list-style:none;
}
.list li{
  padding:12px 14px;
  border-top:1px solid var(--line);
}
.list li:first-child{ border-top:0; }
.list .muted{ color:var(--muted); font-size:13px; margin-top:4px; }

.figure{
  position:relative;
  background: #0a0f1c;
}
.figure img{
  width:100%;
  display:block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.figure .cap{
  padding:12px 14px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

.notice{
  padding:14px;
  color:var(--muted);
  line-height: 1.55;
}

.hr{ height:1px; background:var(--line); margin: 12px 0; }

.bottom-nav{
  position:fixed;
  left:0; right:0;
  bottom: 84px;
  z-index: 11;
  display:flex;
  justify-content:center;
  padding: 10px 12px;
}
.nav{
  width:min(980px, 100%);
  display:flex;
  gap:8px;
  justify-content:space-between;
  background: rgba(11,15,25,.72);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:8px;
  backdrop-filter: blur(12px);
}
.nav a{
  flex:1;
  text-align:center;
  padding:10px 10px;
  border-radius: 14px;
  color: var(--muted);
  font-weight:600;
  font-size: 13px;
}
.nav a.active{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.mini-player{
  position:fixed;
  left:0; right:0; bottom: 10px;
  z-index: 12;
  display:flex;
  justify-content:center;
  padding: 0 12px;
}
.mini-player .wrap{
  width:min(980px, 100%);
  display:flex;
  align-items:center;
  gap:12px;
  padding: 12px 12px;
  background: rgba(16,26,43,.85);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.pp-btn{
  width:46px; height:46px;
  border-radius: 16px;
  border:0;
  cursor:pointer;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#08101f;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pp-icon{ font-size:16px; transform: translateX(1px); }

.track{ flex:1; min-width: 0; }
.live{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:800;
  color: var(--ok);
  letter-spacing:.4px;
}
.dot{ width:8px; height:8px; border-radius:99px; background:var(--ok); box-shadow: 0 0 0 6px rgba(27,215,96,.14); }

.title-row{ display:flex; align-items:center; gap:10px; margin-top:4px; }
.track-title{
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.track-sub{ margin-top:3px; color: var(--muted); font-size:12px; }

.vol{
  display:flex; align-items:center; gap:10px;
  width: 170px;
}
.vol input[type=range]{ width: 100%; }

.pills{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 10px;
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:700;
  color: var(--text);
}
.pill small{ color: var(--muted); font-weight:600; }
