body {
    font-family: sans-serif;
    background:#000;
    color:#ff69b4;
    padding:40px 20px;
    text-align:center;
}
.profile-container {
    max-width:400px;
    margin:auto;
}
.avatar-circle {
    width:80px;
    height:80px;
    border:2px solid #ff69b4;
    border-radius:50%;
    margin:0 auto 20px auto;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2em;
    box-shadow:0 0 15px rgba(255,105,180,0.3);
}
h1 {
    font-size:1.2em;
    color:#fff;
    margin-bottom:5px;
    letter-spacing:1px;
}
.subdomain-tag {
    font-size:0.8em;
    color:#ff1493;
    margin-bottom:30px;
    font-weight:bold;
}
.links-list {
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:30px;
}
.profile-btn {
    display:block;
    padding:15px;
    background:#000;
    border:2px solid #ff69b4;
    color:#ff69b4;
    text-decoration:none;
    font-weight:bold;
    border-radius:4px;
    transition:all 0.2s ease;
    text-transform:uppercase;
    letter-spacing:1px;
}
.profile-btn:hover {
    background:#ff69b4;
    color:#000;
    box-shadow:0 0 20px #ff69b4;
    transform:translateY(-2px);
}
.profile-btn:active {
    transform:translateY(0);
}
.bio {
    color:white;
}
.footer {
    font-size:0.7em;
    margin-top:50px;
    opacity:0.5;
    color:#ff69b4;
}
.footer a {
    color:inherit;
    text-decoration:none;
    border-bottom:1px solid #333;
}
