/* Light theme overrides */
[data-theme='light'] {
  --bg-base: #fafafa;
  --bg-surface: #ffffff;
  --bg-elevated: #f4f4f8;
  --bg-border: #e2e2ea;

  --text-primary: #0a0a1a;
  --text-secondary: #4a4a6a;
  --text-muted: #8a8aa0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 24px rgba(124, 58, 237, 0.15);
}

[data-theme='light'] body {
  color: var(--text-primary);
}

[data-theme='light'] p {
  color: var(--text-secondary);
}

[data-theme='light'] a:hover {
  color: #5b21b6;
}
