
:root{
--bg:#0B0B12;
--surface:#12121A;
--card:#171726;
--primary:#A855F7;
--secondary:#7C3AED;
--accent:#EC4899;
--text:#fff;
--muted:#A1A1AA;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,sans-serif;
background:var(--bg);
color:#fff;
padding-bottom:90px;
}
.container{width:min(1400px,94%);margin:auto}
header{
position:sticky;top:0;z-index:999;
background:rgba(11,11,18,.9);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}
.logo{
display:flex;
align-items:center;
gap:12px;
font-weight:700;
}
.logo img{
width:50px;
border-radius:12px;
}
nav ul{
display:flex;
gap:24px;
list-style:none;
}
nav a{
text-decoration:none;
color:#fff;
font-size:14px;
}
.btn-primary{
background:linear-gradient(90deg,var(--primary),var(--accent));
padding:12px 22px;
border-radius:14px;
color:#fff;
text-decoration:none;
border:none;
}
.btn-ghost{
border:1px solid rgba(255,255,255,.15);
padding:12px 22px;
border-radius:14px;
color:#fff;
text-decoration:none;
background:transparent;
}
.hero{
padding:70px 0;
}
.hero-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:30px;
align-items:center;
}
.hero-card{
background:linear-gradient(180deg,#13131f,#0f0f18);
border:1px solid rgba(168,85,247,.25);
padding:40px;
border-radius:28px;
box-shadow:0 0 40px rgba(168,85,247,.15);
}
.hero h1{
font-size:72px;
line-height:1;
margin-bottom:20px;
}
.hero h1 span{
color:var(--primary);
}
.hero p{
color:var(--muted);
font-size:18px;
margin-bottom:24px;
line-height:1.7;
}
.hero-image{
width:100%;
border-radius:28px;
}
.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:24px;
}
.stat{
background:#141420;
padding:20px;
border-radius:22px;
border:1px solid rgba(255,255,255,.05);
}
.section{
padding:40px 0;
}
.section-title{
font-size:28px;
margin-bottom:20px;
}
.song-list,.artist-list{
display:flex;
flex-direction:column;
gap:14px;
}
.song-row,.artist-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px;
background:#13131f;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);
}
.song-meta,.artist-meta{
display:flex;
align-items:center;
gap:14px;
}
.song-meta img,.artist-meta img{
width:60px;
height:60px;
object-fit:cover;
border-radius:14px;
}
.sidebar{
position:fixed;
left:0;
top:0;
bottom:0;
width:250px;
background:#12121A;
padding:30px 20px;
border-right:1px solid rgba(255,255,255,.08);
}
.dashboard-main{
margin-left:270px;
padding:30px;
}
.side-nav{
display:flex;
flex-direction:column;
gap:16px;
margin-top:30px;
}
.side-nav a{
color:#fff;
text-decoration:none;
padding:12px;
background:#171726;
border-radius:14px;
}
.music-player{
position:fixed;
bottom:0;
left:0;
right:0;
height:82px;
background:#12121A;
border-top:1px solid rgba(255,255,255,.08);
display:flex;
justify-content:space-between;
align-items:center;
padding:0 24px;
z-index:999;
}
.player-center{
width:40%;
}
.progress{
height:4px;
background:#2a2a3e;
border-radius:999px;
margin-top:10px;
overflow:hidden;
}
.progress span{
display:block;
height:100%;
width:40%;
background:linear-gradient(90deg,var(--primary),var(--accent));
}
.auth-wrap{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
}
.auth-card{
width:100%;
max-width:480px;
padding:40px;
background:#12121A;
border-radius:28px;
border:1px solid rgba(255,255,255,.08);
}
input,select,textarea{
width:100%;
margin-bottom:16px;
padding:14px;
background:#171726;
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
color:#fff;
}
footer{
padding:60px 0;
}
@media(max-width:900px){
.hero-grid,.stats{
grid-template-columns:1fr;
}
.hero h1{
font-size:48px;
}
nav{
display:none;
}
.sidebar{
display:none;
}
.dashboard-main{
margin-left:0;
}
}
