/* Simple CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0f1021;
  color: #e0e0e0;
} 