:root {
  --bg: #020402;
  --panel: #0a140c;
  --accent: #39ff14;
  --accent-purple: #a855f7;
  --text: #d6ffe0;
  --subtext: #8fe6a5;
  --border: #123318;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

.app-container {
  display: flex;
  height: 100vh;
}