/* ================== PROFILE PILL (используется на странице профиля) ================== */
.profile-button {
    position: fixed;
    top: 96px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.profile-button:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border-color: var(--line-2);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.55),
        0 0 0 4px rgba(212, 175, 55, 0.22);
}

.profile-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(244, 228, 188, 0.85), rgba(212, 175, 55, 0.55) 60%, transparent 80%),
        linear-gradient(135deg, var(--ink-3), var(--ink));
    border: 1px solid var(--line-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 12px rgba(212, 175, 55, 0.30);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.profile-name {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.profile-status {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 5px;
    height: 5px;
    background: #ff5566;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 85, 102, 0.7);
}

.online-count {
    transition: opacity 0.15s ease;
}
