/* Creator Experience Styles */
body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  cursor: crosshair;
}

canvas {
  display: block;
  cursor: crosshair;
}

/* Prevent text selection on UI elements */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Smooth transitions for any dynamic elements */
* {
  box-sizing: border-box;
}