body {
    background-color: #0b111e;
    color: #ffffff;
    font-family: -apple-system, system-ui, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

#profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1a2332;
    margin-bottom: 15px;
}

h1 { font-size: 1.8rem; margin: 10px 0; }
#bio { color: #94a3b8; line-height: 1.5; font-size: 0.95rem; margin-bottom: 30px; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.social-icons a {
    color: #94a3b8;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.social-icons a:hover { color: white; }

.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.link-card i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

/* This allows the text to stay centered while the icon is on the left */
.link-card { position: relative; }

.link-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
