/* CoinWhales Shop */

.shop-screen {
  min-height: 100vh;
  background: linear-gradient(180deg, #030508 0%, #0b1224 50%, #030508 100%);
  animation: shopFadeIn 0.3s ease;
}

@keyframes shopFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.shop-screen .sub-title-text {
  background: linear-gradient(90deg, #f5c451, #fde68a, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shop-balance-bar {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
}

.shop-balance-pill {
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(18, 31, 61, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.shop-balance-pill span {
  display: block;
  font-size: 11px;
  color: #94a3b8;
}

.shop-balance-pill strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
  color: #f5c451;
}

.shop-balance-pill.spins strong {
  color: #c4b5fd;
}

.shop-intro {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  text-align: center;
}

.shop-packs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.shop-pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, #121f3d 0%, #0a0f1c 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.shop-pack-card.is-locked {
  opacity: 0.72;
}

.shop-pack-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(245, 196, 81, 0.22);
  color: #fde68a;
}

.shop-pack-visual {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 8px;
}

.shop-mini-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    #1a1040 0deg 36deg,
    #0f1835 36deg 72deg,
    #1a1530 72deg 108deg,
    #0a1228 108deg 144deg,
    #1a1040 144deg 180deg,
    #0f1835 180deg 216deg,
    #1a1530 216deg 252deg,
    #0a1228 252deg 288deg,
    #1a1040 288deg 324deg,
    #0f1835 324deg 360deg
  );
  border: 3px solid rgba(245, 196, 81, 0.55);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.35),
    inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.shop-mini-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.shop-pack-spins {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #f8fafc;
}

.shop-pack-spins-label {
  margin: 2px 0 6px;
  font-size: 11px;
  color: #94a3b8;
}

.shop-pack-per-spin {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  color: #a78bfa;
  text-align: center;
}

.shop-pack-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #c4b5fd;
}

.shop-pack-buy {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0f;
  cursor: pointer;
  background: linear-gradient(180deg, #fde68a, #f5c451);
}

.shop-pack-buy:disabled {
  cursor: not-allowed;
  background: #334155;
  color: #94a3b8;
}

.shop-pack-buy:not(:disabled):active {
  transform: scale(0.98);
}

.shop-go-wheel-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.shop-status-text {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

/* تنسيق زر متجر العجلة في wheel.css */

.tile-shop .tile-icon:not(.tile-icon--img) {
  background: linear-gradient(145deg, #f5c451, #7c3aed);
  box-shadow: 0 0 14px rgba(245, 196, 81, 0.35);
}

.tile-profile .tile-icon {
  background: linear-gradient(145deg, #3b82f6, #1e3a8a);
}

/* Home profile card */
.home-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--cw-purple-surface, linear-gradient(145deg, #1e1145 0%, #140c2e 48%, #0f1628 100%));
  border: var(--cw-purple-border, 2px solid #c084fc);
  box-shadow: var(--cw-purple-glow, 0 0 14px rgba(168, 85, 247, 0.42));
  cursor: pointer;
}

.home-profile-card:active {
  transform: scale(0.99);
}

.home-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #7c3aed, #312e81);
  border: 2px solid rgba(168, 85, 247, 0.5);
  flex-shrink: 0;
}

.home-profile-avatar.placeholder {
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #e2e8f0;
}

.home-profile-info {
  flex: 1;
  min-width: 0;
}

.home-profile-name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-profile-meta {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--cw-purple-muted, #a78bfa);
}

.home-profile-chevron {
  color: var(--cw-purple-light, #d8b4fe);
  font-size: 18px;
}

/* Profile screen — نفس ستايل الصفحة الرئيسية */
.profile-screen--home {
  min-height: 100vh;
  animation: fadeIn 0.25s ease;
  padding-bottom: 8px;
}

.profile-home-topbar {
  display: grid;
  grid-template-columns: 44px 1fr 58px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  overflow: visible;
}

.profile-home-back {
  justify-self: start;
  color: var(--cw-purple-light, #d8b4fe);
}

.profile-home-title {
  grid-column: 2;
  margin: 0;
  font-size: 20px;
}

.profile-settings-premium-btn {
  justify-self: end;
  grid-column: 3;
  margin-top: 4px;
}

.profile-hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 22px 18px 20px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--cw-purple-surface);
  border: var(--cw-purple-border);
  box-shadow: var(--cw-purple-glow), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.profile-avatar-lg {
  width: 96px;
  height: 96px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(192, 132, 252, 0.65);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45), 0 0 20px rgba(168, 85, 247, 0.25);
  background: linear-gradient(145deg, #7c3aed, #312e81);
}

.profile-avatar-lg.placeholder {
  display: grid;
  place-items: center;
  font-size: 40px;
}

.profile-name-lg {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: #faf5ff;
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

.profile-whale-rank {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--cw-purple-light, #d8b4fe);
}

.profile-rank-hint {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--cw-purple-muted, #a78bfa);
}

.profile-username {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--cw-purple-muted, #a78bfa);
}

.profile-id {
  margin: 4px 0 0;
  font-size: 11px;
  color: #64748b;
}

.profile-auth-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #f87171;
}

.profile-connections-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--cw-purple-surface);
  border: var(--cw-purple-border);
  box-shadow: var(--cw-purple-glow), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.profile-connections-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #faf5ff;
}

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

.profile-connection-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  background: rgba(0, 88, 251, 0.15);
  border: 1px solid rgba(0, 88, 251, 0.35);
  color: #e8f0ff;
  flex-shrink: 0;
}

.profile-connection-body {
  flex: 1;
  min-width: 0;
}

.profile-connection-body strong {
  display: block;
  font-size: 13px;
  color: #faf5ff;
}

.profile-connection-status {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--cw-purple-muted, #a78bfa);
  word-break: break-word;
}

.profile-connection-status.is-linked {
  color: #7dffb0;
}

.profile-connection-btn {
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #0058fb, #003db8);
  color: #fff;
  flex-shrink: 0;
}

.profile-connection-btn.is-linked {
  background: rgba(255, 255, 255, 0.08);
  color: #e8f0ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-connection-row.is-unavailable {
  opacity: 0.55;
}

.profile-connection-row.is-unavailable .profile-connection-btn {
  display: none;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 20px;
}

.profile-stat-card {
  padding: 14px 12px;
  border-radius: 16px;
  background: #0a0f1c;
  border: var(--cw-purple-border);
  box-shadow: var(--cw-purple-glow);
}

.profile-stat-card.wide {
  grid-column: 1 / -1;
  background: var(--cw-purple-surface);
}

.profile-stat-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--cw-purple-muted, #a78bfa);
}

.profile-stat-value {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #faf5ff;
}

.profile-stat-value.gold {
  color: #f5c451;
  text-shadow: 0 0 12px rgba(245, 196, 81, 0.35);
}

.profile-stat-value.purple {
  color: var(--cw-purple-light, #d8b4fe);
}

.profile-actions {
  display: grid;
  gap: 10px;
  padding: 0 4px 24px;
}

.profile-action-btn {
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(18, 31, 61, 0.8);
  cursor: pointer;
}

.profile-action-btn.primary {
  border: 0;
  color: #0a0a0f;
  background: linear-gradient(90deg, #f5c451, #fde68a);
}

.profile-avatar-frame-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.profile-avatar-frame-wrap--lg {
  display: block;
  margin: 0 auto 12px;
}

.profile-avatar-frame-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
  border: 3px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-avatar-frame-wrap[data-frame="none"] .profile-avatar-frame-ring {
  border-color: transparent;
  box-shadow: none;
}

.profile-avatar-frame-wrap[data-frame="gold"] .profile-avatar-frame-ring {
  border-color: #f5c451;
  box-shadow: 0 0 14px rgba(245, 196, 81, 0.55);
}

.profile-avatar-frame-wrap[data-frame="purple"] .profile-avatar-frame-ring {
  border-color: #a855f7;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.55);
}

.profile-avatar-frame-wrap[data-frame="vip"] .profile-avatar-frame-ring {
  border-color: #fde68a;
  box-shadow: 0 0 16px rgba(253, 224, 106, 0.5), 0 0 8px rgba(168, 85, 247, 0.4);
}

.profile-avatar-frame-wrap[data-frame="cyan"] .profile-avatar-frame-ring {
  border-color: #22d3ee;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.5);
}

.profile-avatar-frame-wrap[data-frame="whale"] .profile-avatar-frame-ring {
  border-color: #60a5fa;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
}

.profile-avatar-frame-wrap[data-frame]:not([data-frame="none"]) .home-profile-avatar,
.profile-avatar-frame-wrap[data-frame]:not([data-frame="none"]) .profile-avatar-lg {
  border-color: transparent;
}

/* —— Profile settings sheet —— */
.profile-settings-dialog {
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 720px);
  margin: auto auto 0;
  padding: 0;
  border: 0;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #141f38 0%, #0a1020 42%, #060b14 100%);
  color: #f1f5f9;
  overflow: hidden;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.55);
}

.profile-settings-dialog::backdrop {
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(4px);
}

.profile-settings-dialog-form {
  margin: 0;
  max-height: min(92vh, 720px);
  display: flex;
  flex-direction: column;
}

.profile-settings-sheet-handle {
  width: 40px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.profile-settings-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 12px;
}

.profile-settings-dialog-head-text {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

/* نفس إطار وأبعاد أيقونة الإعدادات في البروفايل (52×52) */
.profile-settings-dialog-icon-tile {
  flex-shrink: 0;
  pointer-events: none;
}

.profile-settings-dialog-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.profile-settings-dialog-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.profile-settings-dialog-close:active {
  background: rgba(168, 85, 247, 0.2);
  color: #f8fafc;
}

.profile-settings-dialog-body {
  padding: 4px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.profile-settings-section + .profile-settings-section {
  margin-top: 20px;
}

.profile-settings-section-title {
  margin: 0 0 12px;
  padding-inline: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.profile-settings-block {
  padding: 14px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.profile-settings-block-head {
  margin-bottom: 12px;
}

.profile-settings-block-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
}

.profile-settings-block-head .profile-settings-block-label {
  margin-bottom: 4px;
}

.profile-settings-block-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

/* Language chips */
.psd-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.psd-lang-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  font-family: inherit;
  background: rgba(8, 14, 28, 0.65);
  color: #cbd5e1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.psd-lang-chip:active {
  transform: scale(0.98);
}

.psd-lang-flag {
  font-size: 22px;
  line-height: 1;
}

.psd-lang-name {
  font-size: 12px;
  font-weight: 700;
}

.profile-lang-btn.active.psd-lang-chip {
  border-color: rgba(168, 85, 247, 0.55);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.22), rgba(99, 102, 241, 0.12));
  color: #f8fafc;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.35), 0 8px 20px rgba(99, 102, 241, 0.15);
}

/* Frame strip */
.psd-frame-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -4px;
  padding-inline: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.psd-frame-strip::-webkit-scrollbar {
  display: none;
}

.psd-frame-option {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  scroll-snap-align: start;
}

.psd-frame-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(148, 163, 184, 0.2);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.psd-frame-preview::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  pointer-events: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.psd-frame-preview[data-frame="gold"]::before {
  border-color: #f5c451;
  box-shadow: 0 0 12px rgba(245, 196, 81, 0.45);
}

.psd-frame-preview[data-frame="purple"]::before {
  border-color: #a855f7;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
}

.psd-frame-preview[data-frame="vip"]::before {
  border-color: #fde68a;
  box-shadow: 0 0 12px rgba(253, 224, 106, 0.4), 0 0 6px rgba(168, 85, 247, 0.35);
}

.psd-frame-preview[data-frame="cyan"]::before {
  border-color: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
}

.psd-frame-preview[data-frame="whale"]::before {
  border-color: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
}

.psd-frame-avatar {
  font-size: 24px;
  line-height: 1;
}

.psd-frame-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-frame-btn.active .psd-frame-preview {
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.04);
}

.profile-frame-btn.active .psd-frame-label {
  color: #e9d5ff;
}

/* Preferences card */
.profile-settings-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.psd-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
}

.psd-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.psd-toggle-copy {
  flex: 1;
  min-width: 0;
}

.psd-toggle-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}

.psd-toggle-hint {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: #64748b;
}

.psd-toggle-divider {
  height: 1px;
  margin-inline: 14px;
  background: rgba(148, 163, 184, 0.1);
}

.profile-switch {
  position: relative;
  width: 50px;
  height: 30px;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.profile-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.profile-switch.on {
  background: linear-gradient(90deg, #a855f7, #6366f1);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
}

.profile-switch.on::after {
  transform: translateX(20px);
}

html[dir="rtl"] .profile-switch.on::after {
  transform: translateX(-20px);
}

.profile-settings-status {
  margin: 14px 0 0;
  min-height: 18px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
}

.profile-settings-status--ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.08);
}

.profile-settings-status--err {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
}

.profile-settings-status:empty {
  display: none;
}

@media (min-width: 540px) {
  .profile-settings-dialog {
    margin: auto;
    border-radius: 22px;
    box-shadow:
      0 24px 80px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(168, 85, 247, 0.12);
  }

  .profile-settings-sheet-handle {
    display: none;
  }
}
