
body{
margin:0;
background:#050505;
color:white;
font-family:Arial;
}

.topbar{
position:fixed;
top:0;
width:100%;
padding:30px;
background:rgba(0,0,0,.5);
z-index:99;
}

.logo{
font-size:28px;
letter-spacing:8px;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
padding:80px;
overflow:hidden;
}

.hero-image{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.45);
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right, rgba(0,0,0,.7), transparent);
}

.hero-content{
position:relative;
max-width:600px;
z-index:2;
}

.hero h1{
font-size:100px;
margin:0;
}

.hero p{
font-size:24px;
line-height:1.6;
}

.music-section{
padding:80px;
}

.carousel{
display:flex;
gap:24px;
overflow:auto;
}

.card{
min-width:300px;
background:#111;
border-radius:24px;
padding:18px;
cursor:pointer;
}

.card img{
width:100%;
border-radius:18px;
}

.player{
position:fixed;
bottom:0;
left:0;
width:100%;
height:90px;
background:#000;
display:flex;
align-items:center;
gap:20px;
padding:0 20px;
}

.player img{
width:60px;
height:60px;
object-fit:cover;
border-radius:10px;
}
