/* =========================================================
   PIXLECIRCLE PROFILE PAGE
   ========================================================= */

.profile-page {
    width: min(1180px, calc(100% - 40px));
    margin: 32px auto 60px;
}

/* Breadcrumb */

.profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #7f8aa3;
    font-size: 13px;
}

.profile-breadcrumb a {
    color: #a99cff;
    text-decoration: none;
}

.profile-breadcrumb a:hover {
    color: #c4bbff;
}


/* =========================================================
   PROFILE HERO
   ========================================================= */

.profile-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 30px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(112, 88, 255, 0.13),
            transparent 35%
        ),
        #111722;

    border: 1px solid #273149;
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(108, 92, 231, 0.06);
}

.profile-main {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
}


/* Avatar */

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 112px;
    height: 112px;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #6655ff;

    background: #1a2130;

    box-shadow:
        0 0 0 5px rgba(102, 85, 255, 0.08),
        0 0 30px rgba(102, 85, 255, 0.25);
}

.profile-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 38px;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #6655ff,
        #927dff
    );
}

.profile-online-dot {
    position: absolute;

    right: 7px;
    bottom: 8px;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    border: 3px solid #111722;
}

.profile-online-dot.is-online { background: #35d07f; box-shadow: 0 0 12px rgba(53, 208, 127, 0.5); }
.profile-online-dot.is-offline { background: #6f7a8e; box-shadow: none; }


/* Identity */

.profile-identity {
    min-width: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-name-row h1 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.1;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-role-badge.member {
    color: #a99cff;
    background: rgba(102, 85, 255, 0.13);
    border: 1px solid rgba(102, 85, 255, 0.28);
}

.profile-role-badge.administrator {
    color: #ffd27d;
    background: rgba(255, 174, 64, 0.12);
    border: 1px solid rgba(255, 174, 64, 0.28);
}

.profile-tagline {
    margin: 9px 0 13px;

    color: #8f9bb3;
    font-size: 14px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    color: #8995ac;
    font-size: 12px;
}

.profile-status {
    font-size: 12px;
    font-weight: 700;
}

.profile-status::before { font-size: 12px; }
.profile-status.is-online { color: #58d88c; }
.profile-status.is-online::before { content: '● Online'; }
.profile-status.is-offline { color: #8995ac; }
.profile-status::before { content: '●' !important; margin-right: 5px; font-size: 11px; }
.profile-status.is-offline::before { content: '● Offline'; }


/* =========================================================
   PROFILE STATISTICS
   ========================================================= */

.profile-statistics {
    display: flex;
    flex-shrink: 0;

    border: 1px solid #273149;
    border-radius: 12px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.015);
}

.profile-stat {
    min-width: 72px;
    padding: 14px 16px;

    text-align: center;

    border-right: 1px solid #273149;
}

.profile-stat:last-child {
    border-right: none;
}

.profile-stat strong {
    display: block;

    color: #ffffff;
    font-size: 20px;
}

.profile-stat span {
    display: block;

    margin-top: 3px;

    color: #7f8aa3;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Edit button */

.profile-edit-button {
    position: absolute;

    top: 22px;
    right: 22px;

    padding: 9px 14px;

    border-radius: 8px;

    color: #ffffff;
    background: #6655ff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 5px 18px rgba(102, 85, 255, 0.2);

    transition: 0.2s ease;
}

.profile-edit-button:hover {
    background: #796aff;
    transform: translateY(-1px);
}

.profile-message-button {
    display: inline-flex;
    align-items: center;
    margin: 16px 0 0 8px;
    padding: 8px 12px;
    border: 1px solid #3b4a68;
    border-radius: 8px;
    color: #c8c3ff;
    background: rgba(102, 85, 255, .09);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.profile-message-button:hover { color: #fff; border-color: #756bff; background: rgba(102, 85, 255, .2); }

.profile-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 16px 0 0 8px;
    padding: 8px 13px;
    border: 1px solid #6655ff;
    border-radius: 8px;
    color: #fff;
    background: #6655ff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}
.profile-follow-button:hover { background: #796aff; transform: translateY(-1px); }
.profile-follow-button.is-following { border-color: #3b4a68; color: #c8c3ff; background: rgba(102, 85, 255, .09); }
.profile-follow-button.is-following:hover { border-color: #ff7a96; color: #ffd4dc; background: rgba(255, 91, 116, .1); }
.follow-icon { font-size: 15px; line-height: 1; }

.edit-profile-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 18px;
    padding: 13px;
    border: 1px solid rgba(255, 91, 116, .48);
    border-radius: 10px;
    color: #ffd4dc;
    background: rgba(255, 91, 116, .1);
    font-size: 13px;
}
.edit-profile-alert > span { display: grid; flex: 0 0 22px; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: #e9536a; font-weight: 800; }
.edit-profile-alert strong { display: block; margin-bottom: 2px; }
.edit-profile-alert p { margin: 0; color: inherit; line-height: 1.45; }


/* =========================================================
   PROFILE TABS
   ========================================================= */

.profile-tabs {
    display: flex;
    align-items: center;
    gap: 4px;

    margin-top: 18px;
    padding: 5px;

    background: #111722;

    border: 1px solid #273149;
    border-radius: 12px;
}

.profile-tabs a {
    padding: 10px 15px;

    border-radius: 8px;

    color: #8f9bb3;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition: 0.2s ease;
}

.profile-tabs a:hover {
    color: #ffffff;
    background: rgba(102, 85, 255, 0.08);
}

.profile-tabs a.active {
    color: #ffffff;
    background: rgba(102, 85, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(102, 85, 255, 0.18);
}

.profile-tabs a::before { display: inline-block; margin-right: 6px; color: #8e80ff; font-size: 12px; }
.profile-tabs a[data-profile-tab="overview"]::before { content: '◉'; }
.profile-tabs a[data-profile-tab="posts"]::before { content: '▤'; }
.profile-tabs a[data-profile-tab="threads"]::before { content: '▣'; }
.profile-tabs a[data-profile-tab="likes"]::before { content: '♥'; }
.profile-tabs a[data-profile-tab="comments"]::before { content: '☷'; }
.profile-tabs a[data-profile-tab="followers"]::before { content: '♧'; }


/* =========================================================
   CONTENT GRID
   ========================================================= */

.profile-content {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 18px;
}


/* Cards */

.profile-card {
    overflow: hidden;

    background: #111722;

    border: 1px solid #273149;
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 20px;

    border-bottom: 1px solid #273149;
}

.profile-card-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
}

.profile-card-body {
    padding: 20px;
}


/* About */

.about-card {
    grid-column: 1 / -1;
}

.about-card .profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-bio {
    margin: 0 0 20px;

    color: #aeb8ca;

    font-size: 14px;
    line-height: 1.7;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding-bottom: 10px;

    border-bottom: 1px solid rgba(39, 49, 73, 0.7);
}

.profile-detail:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: #727e97;
    font-size: 12px;
}

.detail-value {
    color: #d7deeb;
    font-size: 12px;
    text-align: right;
}


/* =========================================================
   RECENT ACTIVITY
   ========================================================= */

.activity-card {
    grid-column: span 1;
}

.activity-placeholder {
    display: flex;
    gap: 12px;

    padding: 12px;

    border-radius: 9px;

    transition: 0.2s ease;
}

.activity-load-button { width: 100%; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; font: inherit; }
.activity-load-button:focus-visible { outline: 2px solid #796aff; outline-offset: 2px; }
.profile-activity-back { margin-bottom: 12px; padding: 7px 10px; border: 1px solid #504381; border-radius: 7px; background: rgba(102,85,255,.1); color: #b7adff; cursor: pointer; font: inherit; font-size: 12px; font-weight: 700; }
.profile-activity-back:hover { background: rgba(102,85,255,.22); color: #fff; }
.profile-activity-list { display: flex; flex-direction: column; gap: 7px; }
.profile-activity-item { display: flex; gap: 11px; padding: 11px; border: 1px solid rgba(39,49,73,.8); border-radius: 9px; color: inherit; text-decoration: none; transition: .2s ease; }
.profile-activity-item:hover { border-color: rgba(121,106,255,.55); background: rgba(102,85,255,.07); }
.profile-activity-item > span { min-width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; background: rgba(102,85,255,.14); color: #b7adff; font-size: 14px; }
.profile-activity-item strong, .profile-activity-item small { display: block; }.profile-activity-item strong { color: #dce3f2; font-size: 12px; }.profile-activity-item small { margin-top: 3px; color: #7f8aa3; font-size: 11px; line-height: 1.45; }.profile-activity-empty { margin: 6px 0; color: #8995ac; font-size: 13px; }

.activity-placeholder + .activity-placeholder {
    margin-top: 6px;
}

.activity-placeholder:hover {
    background: rgba(102, 85, 255, 0.06);
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border-radius: 9px;

    background: rgba(102, 85, 255, 0.12);
}

.activity-placeholder strong {
    color: #dce3f2;
    font-size: 13px;
}

.activity-placeholder p {
    margin: 4px 0 0;

    color: #7f8aa3;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   OPTIONS
   ========================================================= */

.options-card {
    grid-column: span 1;
}

.options-list {
    padding: 8px;
}

.profile-option {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    box-sizing: border-box;

    padding: 12px;

    border: none;
    border-radius: 9px;

    color: inherit;
    background: transparent;

    text-decoration: none;

    text-align: left;

    cursor: pointer;

    transition: 0.18s ease;
}

.profile-option:hover {
    background: rgba(102, 85, 255, 0.09);
    transform: translateX(2px);
}

.profile-admin-subpanel { border-top: 1px solid rgba(39,49,73,.6); }
.profile-admin-subpanel summary { list-style: none; }
.profile-admin-subpanel summary::-webkit-details-marker { display: none; }
.profile-admin-subpanel[open] summary { color: #fff; background: rgba(102, 85, 255, .09); }
.profile-admin-subpanel-body { padding: 0 12px 14px 58px; }
.profile-admin-subpanel-body select,
.profile-admin-subpanel-body input { width: 100%; box-sizing: border-box; padding: 9px; border: 1px solid #2d3a52; border-radius: 7px; color: #eaf0fb; background: #0d1420; }
.profile-admin-subpanel-body .button { margin-top: 8px; }

.profile-tab-results { grid-column: 1 / -1; min-height: 220px; }
.profile-data-list { display: flex; flex-direction: column; gap: 9px; }
.profile-data-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px; border: 1px solid rgba(39,49,73,.8); border-radius: 10px; color: inherit; text-decoration: none; transition: .2s ease; }
.profile-data-item:hover { border-color: rgba(121,106,255,.6); background: rgba(102,85,255,.07); }
.profile-data-item-icon { display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: #b7adff; background: rgba(102,85,255,.15); font-size: 16px; }
.profile-data-item strong { display: block; color: #eaf0fb; font-size: 13px; }
.profile-data-item small { display: block; margin-top: 4px; color: #8995ac; font-size: 11px; line-height: 1.45; }
.profile-data-item p { margin: 6px 0 0; color: #aeb8ca; font-size: 12px; line-height: 1.5; }
.profile-data-empty { margin: 0; color: #8995ac; font-size: 13px; }
.profile-comment-form { display: flex; gap: 10px; margin-bottom: 18px; }
.profile-comment-form textarea { flex: 1; min-height: 72px; resize: vertical; box-sizing: border-box; padding: 10px 12px; border: 1px solid #2d3a52; border-radius: 9px; color: #eaf0fb; background: #0d1420; font: inherit; font-size: 13px; }
.profile-comment-form textarea:focus { outline: 2px solid rgba(121,106,255,.5); outline-offset: 1px; border-color: #756bff; }
.profile-comment-list { display: flex; flex-direction: column; gap: 10px; }
.profile-comment .social-comment-content { min-width: 0; }
.comment-reaction-row { position: relative; display: flex; align-items: center; gap: 8px; min-height: 23px; margin-top: 5px; }
.comment-reaction-summary { display: inline-flex; align-items: center; min-height: 18px; color: #c4baff; font-size: 13px; }
.comment-reaction-summary span + span { margin-left: -2px; }
.comment-react-trigger { border: 0; padding: 2px 6px; border-radius: 5px; color: #8995ac; background: transparent; cursor: pointer; font: inherit; font-size: 11px; }
.comment-react-trigger:hover { color: #c8c3ff; background: rgba(102,85,255,.12); }
.comment-reaction-picker { position: absolute; z-index: 4; bottom: 25px; left: 0; display: flex; gap: 3px; padding: 6px; border: 1px solid #34415c; border-radius: 20px; background: #171f2e; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.comment-reaction-picker[hidden] { display: none; }
.comment-reaction-option { width: 28px; height: 28px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; font-size: 17px; line-height: 1; transition: transform .15s ease, background .15s ease; }
.comment-reaction-option:hover, .comment-reaction-option.is-selected { background: rgba(102,85,255,.25); transform: scale(1.2); }
.profile-follow-heading { margin: 20px 0 10px; color: #dce3f2; font-size: 13px; }
.profile-follow-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.profile-follow-item { display: flex; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(39,49,73,.8); border-radius: 10px; color: inherit; text-decoration: none; }
.profile-follow-item:hover { border-color: rgba(121,106,255,.6); background: rgba(102,85,255,.07); }
.profile-follow-item img, .profile-follow-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: #1b2440; }
.profile-follow-item strong { color: #eaf0fb; font-size: 12px; }
.profile-follow-item small { display: block; margin-top: 3px; color: #8995ac; font-size: 11px; }
.profile-data-intro { margin: 0 0 12px; color: #8995ac; font-size: 12px; }

@media (max-width: 700px) {
    .profile-stat { min-width: 58px; padding: 11px 8px; }
    .profile-stat strong { font-size: 17px; }
    .profile-tabs { overflow-x: auto; }
    .profile-tabs a { flex: 0 0 auto; padding: 9px 11px; font-size: 12px; }
    .profile-follow-list { grid-template-columns: 1fr; }
    .profile-comment-form { flex-direction: column; }
}

.profile-moderation-actions { display: flex; flex-direction: column; gap: 9px; }
.profile-moderation-actions form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
.profile-moderation-actions input { min-width: 0; padding: 8px 9px; border: 1px solid #2d3a52; border-radius: 6px; background: #0d1420; color: #eaf0fb; }
.profile-moderation-actions button { grid-column: 1 / -1; width: 100%; text-align: left; }
.profile-static-badges { display: none; }
.profile-real-badges { min-height: 126px; }
.profile-badges-empty { grid-column: 1 / -1; margin: 4px 0; color: #8f9bb3; font-size: 13px; }
.profile-role-management p { margin-top: 0; color: #8f9bb3; font-size: 12px; }.profile-role-management form, .profile-badge-management form { display: flex; flex-direction: column; gap: 8px; }.profile-role-management select, .profile-badge-management select { width: 100%; padding: 9px; border: 1px solid #2d3a52; border-radius: 6px; background: #0d1420; color: #eaf0fb; }.profile-badge-management { display: flex; flex-direction: column; gap: 8px; }
.profile-awarded-badge { position: relative; }.profile-badge-remove { position: absolute; top: 8px; right: 8px; z-index: 2; }.profile-badge-remove button { width: 19px; height: 19px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 122, 150, .5); border-radius: 50%; background: rgba(255, 92, 138, .12); color: #ffb1c2; cursor: pointer; font-size: 15px; line-height: 1; }.profile-badge-remove button:hover { background: rgba(255, 92, 138, .3); color: #fff; }

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border-radius: 9px;

    color: #b5aaff;

    background: rgba(102, 85, 255, 0.12);
}

.option-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.option-text strong {
    color: #dce3f2;
    font-size: 13px;
}

.option-text small {
    margin-top: 3px;

    color: #737f97;
    font-size: 10px;
}

.option-arrow {
    margin-left: auto;

    color: #65718a;

    font-size: 20px;
}

.admin-button {
    font-family: inherit;
}


/* =========================================================
   BADGES
   ========================================================= */

.badges-card {
    grid-column: 1 / -1;
}

.badges-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 18px 10px;

    border: 1px solid #273149;
    border-radius: 11px;

    text-align: center;

    background: rgba(255, 255, 255, 0.015);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 9px;

    border-radius: 50%;

    color: #8995ac;

    background: #1a2130;
}

.badge-icon.purple {
    color: #b5aaff;
    background: rgba(102, 85, 255, 0.14);
}

.badge-icon.green {
    color: #5bdc91;
    background: rgba(53, 208, 127, 0.12);
}

.badge-icon.blue {
    color: #6fb7ff;
    background: rgba(80, 150, 255, 0.12);
}

.badge-item strong {
    color: #dce3f2;
    font-size: 12px;
}

.badge-item small {
    margin-top: 4px;

    color: #737f97;
    font-size: 10px;
}

.badge-locked {
    opacity: 0.55;
}


/* =========================================================
   ADMIN
   ========================================================= */

.admin-card {
    grid-column: span 1;

    border-color: rgba(255, 174, 64, 0.22);
}

.admin-header {
    background: rgba(255, 174, 64, 0.035);
}

.admin-badge {
    padding: 4px 8px;

    border-radius: 999px;

    color: #ffd27d;
    background: rgba(255, 174, 64, 0.1);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-technical-card {
    grid-column: span 1;
}

.admin-technical-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.admin-technical-details .profile-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(39, 49, 73, 0.7);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.015);
}

.admin-technical-details .detail-value {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: left;
}

.admin-action-form {
    margin: 0;
}


/* =========================================================
   BANNED USER
   ========================================================= */

.banned-card {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    border-color: rgba(255, 92, 120, 0.25);

    background: rgba(255, 92, 120, 0.045);
}

.banned-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(255, 92, 120, 0.1);
}

.banned-card strong {
    color: #ff9cad;
    font-size: 13px;
}

.banned-card p {
    margin: 4px 0 0;

    color: #8f7880;
    font-size: 11px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .profile-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-statistics {
        width: 100%;
    }

    .profile-stat {
        flex: 1;
    }

    .profile-edit-button {
        position: static;
        align-self: stretch;
        text-align: center;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .about-card,
    .activity-card,
    .options-card,
    .admin-card,
    .admin-technical-card {
        grid-column: 1;
    }

    .admin-technical-details {
        grid-template-columns: 1fr;
    }

    .badges-card,
    .banned-card {
        grid-column: 1;
    }

    .badges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 600px) {

    .profile-page {
        width: min(100% - 24px, 1180px);
        margin-top: 20px;
    }

    .profile-hero {
        padding: 20px;
    }

    .profile-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-name-row h1 {
        font-size: 25px;
    }

    .profile-meta {
        flex-direction: column;
        gap: 7px;
    }

    .profile-tabs {
        overflow-x: auto;
    }

    .profile-tabs a {
        white-space: nowrap;
    }

    .badges-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* =========================================================
   PROFILE PAGE HEADER
   ========================================================= */

.profile-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.profile-nav-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #6c5ce7, #8b7cff);
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 18px rgba(108, 92, 231, 0.35);
}

.profile-nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-nav-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.profile-nav-info strong {
    font-size: 14px;
    color: #ffffff;
}

.profile-nav-info span {
    margin-top: 3px;
    font-size: 11px;
    color: #8f9bb3;
}

.nav-logout {
    color: #ff8fa3;
    font-size: 13px;
    text-decoration: none;
}

.nav-logout:hover {
    color: #ffb0bd;
}

.profile-actions {

    display:flex;

    gap:10px;

    align-items:center;

}



.profile-settings-btn {

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:10px;


    background:#1b2238;


    color:#9ca3af;


    border:1px solid #303857;


    text-decoration:none;


    transition:.2s;

}



.profile-settings-btn:hover {

    color:#c4b5fd;

    border-color:#8b5cf6;

}
