/* ── AUTH SCREEN ── */
#authScreen {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0e13;
  z-index: 9999;
  overflow-y: auto;
}

/* ── LOADING SCREEN ── */
#loadingScreen {
  display: flex;
  position: fixed;
  inset: 0;
  background: #0a0e13;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* ── DASHBOARD ── */
.dashboard-welcome {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--text-muted);
}
