:root {
    --bg-dark: #0f0f11;
    --card: #16161a;
    --accent: #00aaff;
    --text: #e5e5e5;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
}

canvas#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper {
    max-width: 600px;   /* <-- wider page */
    width: 90%;         /* responsive */
    margin: auto;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 30%;
    border: 3px solid var(--accent);
    margin-bottom: 15px;
}

.name {
    font-size: 26px;
    font-weight: 600;
}

.bio {
    font-size: 15px;
    color: #aaa;
    margin: 8px 0 25px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* centers long text */
    background: var(--card);
    color: var(--text);
    padding: 10px 20px;       /* Removed excessive padding */
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #222;
    transition: 0.25s;
    gap: 12px;                /* even spacing between icon and text */
    flex-wrap: wrap;          /* long text wraps nicely */
    text-align: center;       /* centers wrapped text */
}

.link-btn img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;          /* Prevent icon from shrinking */
}

.link-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(0,170,255,0.2);
}

footer {
    font-size: 13px;
    margin-top: 25px;
    color: #777;
}