body{
margin:0;
padding:0;
background:url('assets/bg.gif');
background-size:300px;
font-family:Poppins,sans-serif;
color:white;
}

.layout{
display:grid;
grid-template-columns:320px 1fr;
gap:20px;
padding:20px;
}

.sidebar{
background:rgba(0,0,0,0.85);
padding:20px;
border-radius:20px;
border:4px solid hotpink;
}

.pfp{
width:100%;
height:300px;
object-fit:cover;
border-radius:20px;
border:4px solid hotpink;
}

.username{
font-family:VT323, monospace;
font-size:4rem;
text-align:center;
color:#ff9de6;
}

.status{
text-align:center;
}

nav{
display:flex;
flex-direction:column;
gap:10px;
margin-top:20px;
}

nav a{
background:#111;
padding:10px;
text-decoration:none;
color:#ff9de6;
border-radius:10px;
font-family:VT323, monospace;
font-size:2rem;
}

.main{
display:flex;
flex-direction:column;
gap:20px;
}

.card{
background:rgba(0,0,0,0.85);
padding:20px;
border-radius:20px;
border:4px solid hotpink;
}

.hero{
height:300px;
background:url('https://media.tenor.com/fg6T9jJ8QAcAAAAd/anime-glitch.gif');
background-size:cover;
display:flex;
justify-content:center;
align-items:center;
border-radius:20px;
}

.hero h1{
font-family:'Press Start 2P';
font-size:2rem;
text-shadow:0 0 15px hotpink;
text-align:center;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
border:3px solid hotpink;
}

.friends{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
}

.friend{
background:#111;
padding:10px;
border-radius:15px;
text-align:center;
}

.friend img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
}

.post{
background:#111;
padding:15px;
border-left:5px solid hotpink;
border-radius:10px;
margin-bottom:10px;
}