
:root{
  --bg:#07070a;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --text:#f5f5f7;
  --muted: rgba(245,245,247,.72);
  --gold1:#EF7D1A;
  --gold2:#204A87;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --radius: 22px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 20% 10%, rgba(239,125,26,.25), transparent 60%),
    radial-gradient(900px 520px at 80% 25%, rgba(32,74,135,.25), transparent 55%),
    radial-gradient(900px 520px at 50% 95%, rgba(239,125,26,.12), transparent 55%),
    var(--bg);
  min-height:100vh;
}
a{color:inherit}
.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
  position:relative;
}
.bg-aurora{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 260px at 30% 30%, rgba(239,125,26,.18), transparent 60%),
    radial-gradient(520px 220px at 70% 40%, rgba(32,74,135,.16), transparent 60%),
    radial-gradient(700px 260px at 55% 75%, rgba(239,125,26,.10), transparent 65%);
  filter: blur(12px);
  opacity: .9;
  pointer-events:none;
}
.card{
  width:min(980px, 100%);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, rgba(239,125,26,.55), rgba(32,74,135,.55));
  filter: blur(14px);
  opacity:.22;
  pointer-events:none;
}
.top{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 10px 18px;
  position:relative;
}
.brand{display:flex; gap:14px; align-items:center}
.logo{
  width:56px; height:56px; border-radius:16px;
  object-fit:contain;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding:8px;
}
.title{margin:0; font-size:20px; letter-spacing:.2px}
.sub{margin:2px 0 0 0; color:var(--muted); font-size:13px}
.actions{display:flex; gap:10px; align-items:center}

.player{ padding: 10px 18px 18px 18px; position:relative; }
.meta{padding: 12px 0 14px 0}
.now{ font-size:11px; letter-spacing: .18em; color: rgba(245,245,247,.68); }
.track{font-size:22px; font-weight:700; margin-top:6px}
.hint{margin-top:6px; color: rgba(245,245,247,.65); font-size:13px}

.controls{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.btn{
  appearance:none; border:none; cursor:pointer;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn.primary{
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 36px rgba(239,125,26,.18);
}
.btn.primary:hover{filter: brightness(1.05)}
.btn.ghost{ background: rgba(0,0,0,.18); }
.btn.soft{padding:12px 12px}
.icon{margin-right:6px}

.vol{flex:1; min-width:180px}
.vol input[type="range"]{ width:100%; }

.bars{
  display:flex; gap:4px;
  align-items:flex-end;
  height:54px;
  margin-top:14px;
  padding: 0 2px;
}
.bars span{
  width: 100%;
  max-width: 10px;
  flex:1;
  height: 18%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(239,125,26,.95), rgba(32,74,135,.85));
  opacity:.9;
  transform-origin: bottom;
}
.foot{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-top:16px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-size:12px; padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(245,245,247,.84);
}
.link{color: rgba(245,245,247,.78); font-size:12px; text-decoration:none}
.link:hover{text-decoration:underline}

.modal[hidden]{display:none}
.modal{
  position:fixed; inset:0;
  display:flex; align-items:center; justify-content:center;
  padding: 22px 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  z-index:9999;
}
.modalCard{
  width:min(520px, 100%);
  border-radius: 22px;
  background: rgba(20,20,24,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  padding: 16px;
}
.modalTop{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
  padding: 4px 4px 10px 4px;
}
.modalTitle{font-size:16px; font-weight:700}
.modalSub{font-size:13px; color: rgba(245,245,247,.70); margin-top:2px}
.x{
  appearance:none; border:none; cursor:pointer;
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
}
.shareGrid{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 10px;
}
.shareItem{
  appearance:none; border:none; cursor:pointer;
  padding: 12px 12px; border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  text-align:left;
}
.shareItem:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.toast{
  margin-top: 12px; padding: 10px 12px; border-radius: 14px;
  background: linear-gradient(90deg, rgba(239,125,26,.22), rgba(32,74,135,.22));
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,245,247,.92);
  font-size: 13px;
}
@media (max-width:640px){
  .title{font-size:18px}
  .track{font-size:20px}
  .vol{min-width:140px}
  .shareGrid{grid-template-columns: 1fr}
}


/* ============================
   AWOBAZ Master Player (PRO)
   ============================ */
.awz-card{padding:0; overflow:hidden}
.awz-master{padding:22px 22px 18px}
.awz-head{display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:16px}
.awz-brand{display:flex; align-items:center; gap:12px; min-width:0}
.awz-logo{width:56px; height:56px; border-radius:16px; border:1px solid var(--stroke); box-shadow:0 18px 60px rgba(0,0,0,.45); object-fit:cover}
.awz-brandText{min-width:0}
.awz-title{font-weight:800; letter-spacing:.2px; font-size:20px; line-height:1.15}
.awz-sub{color:var(--muted); font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:52vw}

.awz-right{display:flex; align-items:center; gap:10px}
.awz-live{display:flex; align-items:center; gap:8px; font-weight:700; font-size:12px; padding:8px 10px; border-radius:999px; border:1px solid rgba(239,125,26,.35); background:rgba(239,125,26,.08)}
.awz-live .dot{width:9px; height:9px; border-radius:99px; background:var(--gold1); box-shadow:0 0 0 6px rgba(239,125,26,.15)}
.awz-btn{appearance:none; border:1px solid var(--stroke); border-radius:14px; padding:10px 14px; font-weight:800; color:var(--text); background:rgba(255,255,255,.06); cursor:pointer}
.awz-btn:hover{transform:translateY(-1px)}
.awz-btn:active{transform:translateY(0)}
.awz-ghost{background:transparent}
.awz-primary{border-color:rgba(239,125,26,.35); background:linear-gradient(135deg, rgba(239,125,26,.95), rgba(32,74,135,.65)); box-shadow:0 22px 60px rgba(239,125,26,.22)}
.awz-soft{background:rgba(255,255,255,.06)}
.awz-controls{display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:12px}
.awz-vol{flex:1; min-width:160px; max-width:320px}
.awz-vol input{width:100%}

.awz-body{display:grid; grid-template-columns: 140px 1fr; gap:18px; align-items:center}
@media (max-width:720px){
  .awz-body{grid-template-columns:1fr; }
  .awz-sub{max-width:70vw}
}

.awz-coverWrap{position:relative; width:140px; height:140px}
.awz-cover{width:140px; height:140px; border-radius:24px; border:1px solid var(--stroke); object-fit:cover;
  background:rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 0 10px rgba(239,125,26,.06);
}
.awz-eq{position:absolute; left:10px; right:10px; bottom:10px; height:28px; display:flex; align-items:flex-end; gap:3px; pointer-events:none}
.awz-eq span{flex:1; height:10px; border-radius:6px; background:linear-gradient(180deg, rgba(239,125,26,.95), rgba(32,74,135,.75)); transform:scaleY(.15); transform-origin:bottom; filter:drop-shadow(0 10px 20px rgba(239,125,26,.18))}

.awz-meta .awz-now{font-size:11px; letter-spacing:.18em; color:rgba(245,245,247,.65)}
.awz-track{font-weight:900; font-size:26px; line-height:1.15; margin-top:6px}
.awz-hint{color:rgba(245,245,247,.72); font-size:13px; margin-top:6px}
.awz-row{display:flex; align-items:center; gap:10px; margin-top:14px}
.awz-label{color:rgba(245,245,247,.7); font-size:12px; font-weight:800}
.awz-select{flex:1; border-radius:14px; border:1px solid var(--stroke); padding:12px 12px; background:rgba(0,0,0,.25); color:var(--text); outline:none}

.awz-badges{display:flex; gap:8px; margin-top:14px; flex-wrap:wrap}
.awz-badge{font-weight:800; font-size:11px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05)}

/* Floating mini player */
.awz-mini{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:9999;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(10,10,14,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
}
.awz-miniBtn{
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(239,125,26,.35);
  background:linear-gradient(135deg, rgba(239,125,26,.95), rgba(32,74,135,.65));
  color:#fff; font-weight:900; cursor:pointer;
}
.awz-miniBtn:hover{transform:translateY(-1px)}
.awz-miniMeta{flex:1; min-width:0}
.awz-miniTitle{font-weight:900; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.awz-miniSub{font-size:12px; color:rgba(245,245,247,.72); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.awz-miniBar{width:120px; height:8px; border-radius:99px; background:rgba(255,255,255,.08); overflow:hidden}
.awz-miniBar span{display:block; height:100%; width:0%; background:linear-gradient(90deg, rgba(239,125,26,.95), rgba(32,74,135,.75))}
.awz-miniClose{
  width:36px; height:36px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06);
  color:rgba(245,245,247,.85); cursor:pointer;
}
