.profile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 95;
  min-width: 178px;
  max-width: calc(100vw - 24px);
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 14, 18, .72);
  box-shadow: 0 22px 68px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(1.2);
}

html[data-theme="light"] .profile-menu {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 54px rgba(58, 38, 78, .18), inset 0 1px 0 rgba(255, 255, 255, .70);
}

.profile-menu button {
  width: 100%;
  display: block;
  padding: 11px 12px;
  color: var(--text);
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.profile-menu button:hover,
.profile-menu button:focus-visible {
  outline: none;
  background: var(--surface-soft);
}
