* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0f0f1e;
    color: #e4e4ec;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card {
    background: #181829;
    border: 1px solid #2a2a42;
    border-top: 3px solid #7c72ff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    animation: card-in .5s ease-out;
}

.internal-link {
    color: #7c72ff;
    text-decoration: none;
    transition: .2s;

}

.internal-box {
    background: #1f1f36;
    border: 1px solid #2a2a42;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
    }
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #7c72ff;
}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f5f5fa;
    margin-bottom: 4px;
}

.tagline {
    font-size: 14px;
    color: #9a91ff;
    font-weight: 500;
    margin-bottom: 8px;
}

.divider {
    width: 40px;
    height: 2px;
    background: #7c72ff;
    margin: 20px auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1f1f36;
    border: 1px solid #2a2a42;
    color: #8a8aa3;
    text-decoration: none;
    transition: .2s;
}

.social-link:hover {
    background: #7c72ff;
    border-color: #7c72ff;
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b6b85;
    margin-bottom: 16px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 380px;
    margin: 0 auto;
}

.skill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #1f1f36;
    border: 1px solid #2a2a42;
    transition: .3s;
}

.skill:hover {
    border-color: #7c72ff;
    transform: translateY(-2px);
}

.skill img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: .55;
}

.skill:hover img {
    opacity: 1;
}

.card {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

@media (max-width: 480px) {
    .card {
        padding: 2rem 1.25rem;
    }

    .skills {
        max-width: 300px;
    }
}