:root {
  --bg: #0b0f14;
  --panel: rgba(255,255,255,0.055);
  --panel-border: rgba(255,255,255,0.14);
  --text: #f5f7fa;
  --muted: rgba(245,247,250,0.76);
  --orange: #f28c28;
  --green: #2f9e44;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}
