/* Solar System - Minimal Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background: #000;
  font-family: system-ui, sans-serif;
}

canvas {
  display: block;
}

#info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
}