:root {
  --ae-primary: #111111;
  --ae-primary-dark: #000000;
  --ae-success: #22C55E;
  --ae-danger: #EF4444;
  --ae-warning: #F59E0B;
  --ae-purple: #737373;

  --ae-bg-page: #0a0a0a;
  --ae-bg-surface: #171717;
  --ae-bg-elevated: #1f1f1f;
  --ae-sidebar-bg: #111111;

  --ae-text: #f5f5f5;
  --ae-text-muted: #a3a3a3;
  --ae-text-inverse: #ffffff;

  --ae-border: #2a2a2a;
  --ae-radius: 12px;
  --ae-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  --ae-content-bg: #f5f5f5;
  --ae-content-text: #1a1a1a;
  --ae-card-bg: #ffffff;

  --ae-font: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--ae-font);
  color: var(--ae-text);
  background: var(--ae-bg-page);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ae-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
