/* Define light mode variables */
:root {
  --bg-color: #ffffff;
  --text-color: #000000;
}

/* Define dark mode variables */
[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
}

/* Apply the variables */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* ... rest of existing styles ... */