
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif}
body{
background:black;
color:white;
min-height:100vh;
background: radial-gradient(circle at center,#430014 0%,#000 70%);
}
header{
display:flex;
justify-content:space-between;
padding:15px 20px;
}
.logo{
font-size:42px;
font-weight:bold;
color:#ff4d8d;
}
.socials{display:flex;gap:10px}
.socials a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#080808;
border:1px solid #222;
border-radius:12px;
color:white;
text-decoration:none;
}
main{
max-width:550px;
margin:auto;
padding:20px;
text-align:center;
}
.profile{
width:110px;
height:110px;
object-fit:cover;
border-radius:50%;
border:3px solid #ff4d8d;
margin-bottom:15px;
}
h1{font-size:58px;margin-bottom:10px}
p{color:#ccc;margin-bottom:30px}
.card{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#050505;
border:1px solid #222;
border-radius:20px;
margin-bottom:18px;
color:white;
text-decoration:none;
}
.left{
display:flex;
gap:15px;
align-items:center;
text-align:left;
}
.left i{font-size:34px}
.arrow{font-size:30px;color:#ff4d8d}
.previas{margin-top:30px;text-align:left}
.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin-top:15px;
}
.preview{
height:150px;
border-radius:16px;
background:linear-gradient(180deg,#25010c,#111);
border:1px solid #2e2e2e;
display:block;
}
.stats{
display:flex;
gap:15px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}
.box{
background:#0b0b0b;
border:1px solid #2e2e2e;
padding:20px;
border-radius:16px;
width:150px;
}
.box h3{font-size:35px;color:#ff4d8d}
footer{
margin-top:50px;
padding:25px;
border-top:1px solid #161616;
text-align:center;
}
footer a{
margin:0 10px;
color:#ddd;
text-decoration:none;
}
.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
display:none;
align-items:center;
justify-content:center;
padding:20px;
}
.modal-box{
background:#090909;
border:1px solid #5c1732;
border-radius:25px;
padding:30px;
max-width:700px;
width:100%;
position:relative;
}
.close{
position:absolute;
top:10px;
right:20px;
font-size:35px;
cursor:pointer;
}
@media(max-width:700px){
h1{font-size:42px}
.grid{grid-template-columns:repeat(2,1fr)}
.box{width:100%}
}
