.profile-status-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 320px);
}

.profile-status-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
}

.profile-status-banner[hidden] {
  display: none;
}

.profile-status-banner-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-status-banner-copy {
  flex: 1;
  min-width: 0;
}

.profile-status-banner-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.profile-status-banner-text {
  margin: 4px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.profile-status-banner-action {
  flex: 0 0 auto;
  align-self: center;
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.profile-status-banner.is-muted {
  background: rgba(134, 232, 232, 0.1);
  border: 1px solid rgba(134, 232, 232, 0.28);
}

.profile-status-banner.is-muted .profile-status-banner-icon {
  background: rgba(134, 232, 232, 0.16);
  color: #86E8E8;
}

.profile-status-banner.is-muted .profile-status-banner-title {
  color: #a8f0f0;
}

.profile-status-banner.is-muted .profile-status-banner-text {
  color: rgba(255, 255, 255, 0.52);
}

.profile-status-banner.is-muted .profile-status-banner-action {
  background: rgba(134, 232, 232, 0.16);
  color: #86E8E8;
}

.profile-status-banner.is-blocked {
  background: rgba(255, 120, 120, 0.1);
  border: 1px solid rgba(255, 120, 120, 0.24);
}

.profile-status-banner.is-blocked .profile-status-banner-icon {
  background: rgba(255, 120, 120, 0.14);
  color: #ffb0b0;
}

.profile-status-banner.is-blocked .profile-status-banner-title {
  color: #ffb0b0;
}

.profile-status-banner.is-blocked .profile-status-banner-text {
  color: rgba(255, 255, 255, 0.55);
}

.profile-status-banner.is-blocked .profile-status-banner-action {
  background: rgba(255, 120, 120, 0.14);
  color: #ffb0b0;
}

.profile-status-banner.is-reported {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-status-banner.is-reported .profile-status-banner-icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.profile-status-banner.is-reported .profile-status-banner-title {
  color: rgba(255, 255, 255, 0.88);
}

.profile-status-banner.is-reported .profile-status-banner-text {
  color: rgba(255, 255, 255, 0.48);
}

.profile-menu-item-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.profile-menu-item-label {
  display: block;
}

.profile-menu-item-desc {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
}

.profile-menu-item.is-active-state {
  background: rgba(134, 232, 232, 0.1);
  border: 1px solid rgba(134, 232, 232, 0.18);
}

.profile-feedback-sheet {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile-feedback-sheet[hidden] {
  display: none;
}

.profile-feedback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.profile-feedback-panel {
  position: relative;
  width: min(100%, 390px);
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  border-radius: 20px 20px 0 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.profile-feedback-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-feedback-icon.is-success {
  background: rgba(134, 232, 232, 0.14);
  color: #86E8E8;
}

.profile-feedback-icon.is-warning {
  background: rgba(255, 196, 120, 0.14);
  color: #ffc878;
}

.profile-feedback-icon.is-danger {
  background: rgba(255, 120, 120, 0.14);
  color: #ff9a9a;
}

.profile-feedback-icon.is-neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.profile-feedback-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.profile-feedback-body {
  margin: 8px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.profile-feedback-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.profile-feedback-list li {
  position: relative;
  padding: 0 0 0 16px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.profile-feedback-list li + li {
  margin-top: 6px;
}

.profile-feedback-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(134, 232, 232, 0.72);
}

.profile-feedback-link-box {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  word-break: break-all;
}

.profile-feedback-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.profile-feedback-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-feedback-btn-primary {
  background: rgba(134, 232, 232, 0.18);
  color: #86E8E8;
}

.profile-feedback-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.profile-feedback-btn-danger {
  background: rgba(255, 120, 120, 0.14);
  color: #ff9a9a;
}

.profile-confirm-sheet {
  position: fixed;
  inset: 0;
  z-index: 1260;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile-confirm-sheet[hidden] {
  display: none;
}

.profile-menu-toast {
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.profile-menu-toast-title {
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-menu-toast-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
}

.profile-menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile-menu-sheet[hidden] {
  display: none;
}

.profile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.profile-menu-panel {
  position: relative;
  width: min(100%, 390px);
  padding: 10px 12px calc(16px + env(safe-area-inset-bottom));
  border-radius: 18px 18px 0 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-menu-handle {
  width: 38px;
  height: 4px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.profile-menu-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.profile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-menu-item {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.profile-menu-item.is-danger {
  color: #ff9a9a;
}

.profile-menu-item:disabled {
  opacity: 0.45;
  cursor: default;
}

.profile-menu-item:not(:disabled):hover,
.profile-menu-item:not(:disabled):focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.profile-menu-cancel {
  width: 100%;
  margin-top: 8px;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-report-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.profile-report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.profile-report-panel {
  position: relative;
  width: min(100%, 340px);
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-report-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.profile-report-title {
  margin: 0 32px 6px 0;
  font-size: 1rem;
  color: #fff;
}

.profile-report-subtitle {
  margin: 0 0 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.profile-report-reasons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-report-reason {
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.profile-report-reason:hover,
.profile-report-reason:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.profile-menu-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}

.profile-menu-btn:hover,
.profile-menu-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.profile-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 36px;
}

.profile-mute-settings-sheet {
  position: fixed;
  inset: 0;
  z-index: 1270;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile-mute-settings-sheet[hidden] {
  display: none;
}

.profile-mute-settings-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.profile-mute-settings-panel {
  position: relative;
  width: min(100%, 390px);
  max-height: min(88vh, 640px);
  overflow-y: auto;
  padding: 10px 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 20px 20px 0 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-mute-settings-title {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.profile-mute-settings-subtitle {
  margin: 6px 0 14px;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.profile-mute-settings-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-mute-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-mute-settings-copy {
  flex: 1;
  min-width: 0;
}

.profile-mute-settings-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.profile-mute-settings-desc {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.profile-mute-switch {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 28px;
  cursor: pointer;
}

.profile-mute-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.profile-mute-switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.profile-mute-switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.profile-mute-switch input:checked + .profile-mute-switch-track {
  background: #86E8E8;
}

.profile-mute-switch input:checked + .profile-mute-switch-track::after {
  transform: translateX(18px);
}

.profile-mute-settings-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 10px;
}

.profile-mute-settings-link-btn {
  border: none;
  background: transparent;
  color: #86E8E8;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-mute-settings-panel .profile-feedback-btn {
  margin-top: 6px;
}

.profile-mute-settings-panel .profile-feedback-btn-secondary {
  margin-top: 8px;
}

.chiizu-open-in-app-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 1400;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border-radius: 16px;
  background: rgba(12, 28, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.chiizu-open-in-app-banner[hidden] {
  display: none !important;
}

.chiizu-open-in-app-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chiizu-open-in-app-copy strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.chiizu-open-in-app-copy span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
}

.chiizu-open-in-app-btn {
  flex-shrink: 0;
  text-decoration: none;
  color: #0b1c28;
  background: #9fd7ef;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
}

.chiizu-open-in-app-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
