:root{ --bg:#ffffff; --bg2:#f6f8fb; --muted:#6b7280; --card:#ffffff; --accent:#2563eb; --text:#071026; }
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial;background:linear-gradient(180deg,var(--bg),var(--bg2));color:var(--text)}
.container{max-width:1200px;margin:28px auto;padding:0 18px}
.header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:18px}
.brand h1{margin:0;font-size:34px}
.tag{color:var(--muted);margin-top:6px}
.search{width:420px;padding:10px;border-radius:8px;border:1px solid rgba(15,23,42,0.06);background:#fff}
.search-results{position:absolute;right:18px;top:78px;background:#fff;color:#071026;border-radius:8px;padding:8px;min-width:320px;box-shadow:0 6px 20px rgba(15,23,42,0.06);display:none;z-index:50}
.search-item{padding:8px;border-bottom:1px solid rgba(15,23,42,0.04);cursor:pointer}
.search-item:last-child{border-bottom:0}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:22px;align-items:start;margin-top:18px}
.card{position:relative;background:var(--card);padding:20px;border-radius:12px;text-align:center;transition:transform .14s ease;min-height:200px;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;box-shadow:0 6px 18px rgba(15,23,42,0.04)}
.card a{display:block;width:100%;height:100%;text-decoration:none;color:inherit}
.card:hover{transform:translateY(-6px)}
.card-content{position:relative;z-index:5}
.title{font-weight:700;font-size:16px;margin-top:12px}
.meta{color:var(--muted);margin-top:6px;font-size:13px}
.track{display:flex;align-items:center;justify-content:space-between;padding:10px;border-bottom:1px solid rgba(15,23,42,0.04)}
.track-left{display:flex;align-items:center;gap:12px}
.track img{width:60px;height:60px;border-radius:8px;object-fit:cover}
.track .info{line-height:1.1}
.track .title{font-weight:600}
.track .sub{color:var(--muted);font-size:13px;margin-top:4px}
.track-actions{display:flex;gap:10px;align-items:center}
.icon{width:44px;height:44px;border-radius:10px;background:rgba(15,23,42,0.04);display:flex;align-items:center;justify-content:center;cursor:pointer}
.footer{margin-top:30px;color:var(--muted);font-size:14px}
.player{position:fixed;left:16px;right:16px;bottom:14px;height:86px;background:#ffffff;display:flex;align-items:center;justify-content:space-between;padding:12px 18px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.06);z-index:9999}
.player .left{display:flex;align-items:center;gap:12px}
.player img{width:64px;height:64px;border-radius:8px;object-fit:cover}
.player .title{font-weight:700}
.player .sub{color:var(--muted);font-size:13px}
.controls .play-btn{width:56px;height:56px;border-radius:50%;background:linear-gradient(180deg,var(--accent),#5fb0ff);display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px;cursor:pointer;box-shadow:0 10px 30px rgba(37,99,235,0.12)}
.progress{flex:1;margin-left:20px;margin-right:20px;height:6px;background:rgba(15,23,42,0.04);border-radius:6px;overflow:hidden}
.progress > .bar{height:100%;width:0;background:linear-gradient(90deg,var(--accent),#5fb0ff);transition:width 0.12s linear}
