body{
margin:0;
padding:0;
}

.rpp-wrapper{
min-height:100vh;
display:flex;
background:#0f172a;
color:white;
font-family:Arial,sans-serif;
}

.rpp-left{
width:50%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:40px;
background:linear-gradient(135deg,#111827,#1e293b);
}

.rpp-right{
width:50%;
padding:50px;
display:flex;
flex-direction:column;
justify-content:center;
background:#111827;
}

.rpp-logo{
width:320px;
height:320px;
border-radius:25px;
object-fit:cover;
box-shadow:0 0 40px rgba(0,0,0,.5);
}

.rpp-live{
margin-top:20px;
background:#22c55e;
padding:10px 20px;
border-radius:50px;
font-weight:bold;
}

#song-title{
font-size:30px;
margin-top:20px;
text-align:center;
}

#artist-name{
opacity:.7;
text-align:center;
}

#play-btn{
width:100px;
height:100px;
border:none;
border-radius:50%;
background:#22c55e;
color:white;
font-size:36px;
cursor:pointer;
margin-top:25px;
transition:.3s;
}

#play-btn:hover{
transform:scale(1.1);
}

.rpp-history{
background:rgba(255,255,255,.05);
padding:30px;
border-radius:25px;
}

.rpp-history h3{
margin-top:0;
}

.rpp-history ul{
list-style:none;
padding:0;
margin:0;
}

.rpp-history li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

.rpp-socials{
margin-top:30px;
display:flex;
flex-wrap:wrap;
gap:15px;
}

.rpp-socials a{
width:55px;
height:55px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:#1e293b;
color:white;
font-size:22px;
text-decoration:none;
transition:.3s;
}

.rpp-socials a:hover{
background:#22c55e;
transform:translateY(-4px);
}

@media(max-width:900px){

.rpp-wrapper{
flex-direction:column;
}

.rpp-left,
.rpp-right{
width:100%;
}

.rpp-logo{
width:240px;
height:240px;
}

}
