* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #111827, #1f2937);
    color: white;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 16px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.bio {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.5;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.socials a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: bold;
}

.socials a:hover {
    color: white;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-button {
    display: block;
    text-decoration: none;
    color: white;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;

    padding: 16px;
    font-size: 1rem;
    font-weight: 600;

    transition: all 0.25s ease;
}

.link-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.link-button:active {
    transform: translateY(0);
}