#auth-splash {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#auth-splash img {
  width: 450px;
  height: 450px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#ga-user-avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: var(--pst-color-primary) !important;
  color: var(--pst-color-on-primary, white) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
}