:root {
    --bg: #000000;
    --text: #00ff41;
    --text-alt: #008f11;
    --glow: rgba(0, 255, 65, 0.5);
    --scanline: rgba(18, 16, 16, 0.1);
    --cursor-base: #08ff08;
    --cursor-clickable: #ff6666;
    --sidebar-hover: #00ff41;
    --hover-bg: rgba(0, 255, 65, 0.1);
    --border: #00ff41;
    --shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

[data-theme="dark"] {
    --cursor-base: #08ff08;
    --cursor-clickable: #ff6666;
  --bg: #000000;
  --text: #aaffaa;
  --text-alt: #ccffcc;
  --sidebar-hover: #aaffaa;
  --hover-bg: rgba(170, 255, 170, 0.1);
  --border: #aaffaa;
  --shadow: 0 0 5px rgba(170, 255, 170, 0.3);
}

[data-theme="light"] {
    --cursor-base: #1a3b1a;
    --cursor-clickable: #ff6666;
  --bg: #fdf6e3;
  --text: #1a3b1a;
  --text-alt: #000000;
  --sidebar-hover: #1a3b1a;
  --hover-bg: rgba(26, 59, 26, 0.05);
  --border: #1a3b1a;
  --shadow: 0 0 5px rgba(26, 59, 26, 0.2);
}

body {
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  transition: background-color 0.3s, color 0.3s;
}

/* commit comment */