
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#020617;
color:white;
}

.hero{
text-align:center;
padding:60px 20px 30px;
}

.profile{
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
gap:20px;
margin-bottom:30px;
flex-wrap:wrap;
}

.avatar{
width:140px;
height:140px;
border-radius:50%;
flex-shrink:0;
}

.bio{
max-width:520px;
opacity:.9;
line-height:1.5;
text-align:left;
}

.gallery{
max-width:1400px;
margin:auto;
padding:30px;
display:grid;
grid-template-columns:repeat(9,1fr);
gap:10px;
}

.post{
background:#000;
border-radius:10px;
overflow:hidden;
}

.instagram-media{
max-width:100% !important;
min-width:auto !important;
margin:0 !important;
}

@media(max-width:1100px){
.gallery{grid-template-columns:repeat(6,1fr);}
}

@media(max-width:600px){
.gallery{grid-template-columns:repeat(3,1fr);}
}
.bio a{
color:#3ea6ff;
text-decoration:none;
font-weight:600;
}

.bio a:hover{
text-decoration:underline;
}
