body {
    background-color: #2C2F33;
    color: #b9bbbe;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    user-select: none;
}

.container {
    width: 100%;
    max-width: 680px;
    text-align: center;
    background-color: #23272A;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #5865F2;
    object-fit: cover;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}

.bio {
    font-size: 1.1rem;
    color: #b9bbbe;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

#links-container a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #40444B;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 25px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#links-container a:hover {
    background-color: #5865F2;
    transform: scale(1.03);
}

.link-icon {
    width: 24px;
    height: 24px;
    animation: wiggle-right 1.5s ease-in-out infinite;
    filter: invert(1);
    transform: scaleX(-1);
}

@keyframes wiggle-right {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(6px); }
    50% { transform: translateX(-4px); }
    75% { transform: translateX(2px); }
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #99AAB5;
}