/* Design tokens */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800&family=Caveat:wght@500&display=swap');

:root {
  /* Light mode colors */
  --bg: #f3f3f0;
  --text-primary: #000c14;
  --text-secondary: #525252;
  --card-bg: #ffffff;
  --card-shadow: 0 2px 8px rgba(0, 12, 20, 0.08);
  --accent: #292929;
  --profile-blue: #2563eb;
}

/* Dark mode colors */
body.dark-mode {
  --bg: #0f0f0f;
  --text-primary: #e8e8e8;
  --text-secondary: #a8a8a8;
  --card-bg: #1a1a1a;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --accent: #d4d4d4;
}

html,
body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}
