main .profile .picture {
    width: 136px;
    height: auto;
    box-shadow: 0 0 18px #00000063;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

main .profile .picture:hover {
    transform: scale(1.1);
    cursor: grab;
}

main .profile .picture:active {
    transform: scale(1.05);
    cursor: grabbing;
}

main .profile .click-score {
    font-weight: 400;
    color: var(--subtext);
    text-shadow: 0 3px 6px #0000003a;
    opacity: 0;
    user-select: none;
    animation: fadeUp 2s;
}

@keyframes fadeUp {
    from {
        transform: translateY(0);
        opacity: 1;
    } to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

main .profile .info {
    padding: 4px 0;
    line-height: 1.4;
}

main .profile .info .name {
    font-size: 36px;
    text-shadow: 0 3px 7px #0000004d;
}

main .profile .info .bio {
    font-size: 18px;
    color: var(--subtext);
    text-shadow: 0 3px 6px #00000033;
}

main .profile .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
}

main .profile .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
    width: 125px;
    background-color: var(--card-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: solid 1px var(--card-border);
    border-radius: 99px;
    font-size: 17px;
    user-select: none;
    transition: background-color 0.2s ease;
}

main .profile .links a:hover {
    background-color: var(--card-border);
}

main .profile .links a svg {
    width: 19px;
    fill: var(--text);
}

main .socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(392px, 100%), 1fr));
    gap: 12px;
}

main .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background-color: var(--card-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: solid 1px var(--card-border);
    border-radius: 12px;
    font-size: 19px;
    user-select: none;
    transition: background-color 0.2s ease;
}

main .socials a:hover {
    background-color: var(--card-border);
}

main .socials a svg {
    width: 21px;
    fill: var(--text);
}

main .socials a .live-indicator {
    width: 8px;
    height: 8px;
    background-color: #ff0000b4;
    border-radius: 50%;
}

main .socials a:first-child:nth-last-child(odd) {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    main .profile .picture {
        width: 124px;
        height: auto;
        box-shadow: 0 0 12px #00000063;
    }

    main .profile .click-score {
        font-size: 15px;
    }

    main .profile .info {
        line-height: 1.3;
    }

    main .profile .info .name {
        font-size: 32px;
        text-shadow: 0 3px 7px #0000004d;
    }

    main .profile .info .bio {
        font-size: 16px;
    }

    main .profile .links a {
        padding: 6px 0;
        width: 120px;
        font-size: 15px;
    }

    main .profile .links a svg {
        width: 17px;
    }

    main .socials a {
        gap: 8px;
        padding: 12px 0;
        font-size: 18px;
    }

    main .socials a svg {
        width: 19px;
    }

    main .socials a .live-indicator {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    main .profile .picture {
        width: 112px;
        height: auto;
    }

    main .profile .click-score {
        font-size: 14px;
    }

    main .profile .info .name {
        font-size: 28px;
    }

    main .profile .info .bio {
        font-size: 14px;
    }

    main .profile .links a {
        width: 116px;
        font-size: 14px;
    }

    main .profile .links a svg {
        width: 16px;
    }

    main .socials a {
        font-size: 16px;
    }

    main .socials a svg {
        width: 17px;
    }

    main .socials a .live-indicator {
        width: 5px;
        height: 5px;
    }
}