@charset "UTF-8";
/* === RESET ================================================================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === ROOT =================================================================================================================== */
:root {
    --color-background: #2b2b2b;
    --color-text: #ffffff;
}

/* === HTML / BODY ============================================================================================================ */
html {
    font-size: 16px;
}

body {
    background: #1A1A1A;
    color: #F2F2F2;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* === LINKS ================================================================================================================== */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* === LAYOUT ================================================================================================================= */
.page-content {

}

/* === HEADER ================================================================================================================= */
.site-header {

}

/* === MAIN =================================================================================================================== */
.container {
    width: 100%;
    max-width: 430px;
}

/* === CARD ------------------------------------------------------------------------------------------------------------------- */
.card {
    background: #262626;
    border: 1px solid #3A3A3A;
    border-radius: 24px;
    padding: 40px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.30);
}

/* === PROFILE - IMG ---------------------------------------------------------------------------------------------------------- */
.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    padding: 4px;
    border: 2px solid #555555;
    border-radius: 50%;
    background: #202020;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

/* === PROFILE - TITLE -------------------------------------------------------------------------------------------------------- */
.title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.15;
}
.location {
    text-align: center;
    font-size: 14px;
    color: #9A9A9A;
    margin-bottom: 12px;
}
.subtitle {
    text-align: center;
    font-size: 14px;
    color: #B0B0B0;
    margin-bottom: 34px;
}

/* === PROFILE - BUTTONS ------------------------------------------------------------------------------------------------------ */
.button {

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 64px;
    padding: 0 22px;

    border-left: 3px solid transparent;

}

.button-left {

    display: flex;
    align-items: center;

    gap: 18px;

}

.button-icon {

    width: 24px;
    height: 24px;

    object-fit: contain;

    flex-shrink: 0;

}

.button-text {

    font-size: 14px;
    font-weight: 400;

}

.button-arrow {

    color: #888888;

    font-size: 28px;
    line-height: 1;

    transition: .20s ease;

}

.button:hover .button-arrow {

    transform: translateX(4px);

}

.button-instagram:hover {

    border-left-color: #E1306C;

}

.button-x:hover {

    border-left-color: #FFFFFF;

}

.button-onlyfans:hover {

    border-left-color: #00AFF0;

}


/* === FOOTER ================================================================================================================= */
.footer {
    text-align: center;
    font-size: 14px;
    color: #9A9A9A;
    margin-bottom: 8px;
    margin-top: 40px;
}