*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
color:white;
}

/* BACKGROUND */
.bg-photo{
background-image:url("background.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
position:relative;
}

.bg-photo::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
backdrop-filter:blur(20px);
background:rgba(0,0,0,0.55);
z-index:0;
}

.wrapper{
display:flex;
flex-direction:column;
gap:25px;
position:relative;
z-index:1;
}

/* DISCORD BUTTON */
.discord-btn{
position:fixed;
top:20px;
right:20px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
padding:10px 18px;
border-radius:14px;
text-decoration:none;
color:white;
font-size:14px;
transition:.25s;
z-index:5;
}

.discord-btn:hover{
background:rgba(255,255,255,0.15);
}

/* CARD */
.card{
width:420px;
padding:25px;
border-radius:22px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(25px);
box-shadow:0 20px 60px rgba(0,0,0,.7);

display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.avatar{
width:95px;
height:95px;
border-radius:50%;
margin-bottom:15px;
object-fit:cover;
}

.username{
font-size:34px;
font-weight:600;
margin-bottom:8px;
}

.status{ opacity:.75; }
.location{ opacity:.6; }

/* PLAYER */
.player{
width:420px;
padding:20px;
border-radius:22px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(25px);
box-shadow:0 20px 60px rgba(0,0,0,.7);

display:flex;
align-items:center;
gap:18px;
}

.cover{
width:65px;
height:65px;
border-radius:12px;
}

.song{
font-size:14px;
margin-bottom:10px;
}

.progress-area{
height:6px;
background:rgba(255,255,255,.1);
border-radius:10px;
overflow:hidden;
margin-bottom:10px;
cursor:pointer;
}

.progress-bar{
height:100%;
width:0%;
background:white;
}

.controls{
display:flex;
gap:10px;
font-size:13px;
}

button{
background:rgba(255,255,255,.1);
border:none;
padding:8px 14px;
border-radius:10px;
color:white;
cursor:pointer;
}

/* PROJECT */
.project-section{
width:420px;
padding:18px;
border-radius:22px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(25px);
box-shadow:0 20px 60px rgba(0,0,0,.7);
overflow:hidden;
}

.project-scroll{
display:flex;
gap:16px;
overflow-x:auto;
scroll-behavior:smooth;
}

.project-scroll::-webkit-scrollbar{
display:none;
}

.project-item{
min-width:220px;
background:rgba(255,255,255,0.04);
border-radius:18px;
padding:14px;
cursor:pointer;
transition:.25s;
}

.project-item:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,.6);
}

.project-item img{
width:100%;
height:120px;
object-fit:cover;
border-radius:12px;
margin-bottom:10px;
}

.p-title{
font-size:16px;
font-weight:600;
margin-bottom:6px;
}

.p-desc{
font-size:13px;
opacity:.7;
}

/* COPYRIGHT */
.copyright{
position:fixed;
bottom:15px;
left:50%;
transform:translateX(-50%);
font-size:12px;
opacity:.6;
}

/* MOBILE */
@media(max-width:500px){
.card,.player,.project-section{
width:90vw;
}
}
