:root {
  --primary: #D4FF00;
  --secondary: #111111;
  --accent: #FF3366;
  --background: #FAFAFA;
  --foreground: #0A0A0A;
  --muted: #666666;
  --border: #D1D1D1;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--background);
  color: var(--foreground);
}

#root {
  min-height: 100vh;
}