/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CSS Variables */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-hover: #f1f1ef;
  --border: #e8e8e4;
  --text: #1a1a18;
  --text-2: #6b6b63;
  --text-3: #a8a8a0;
  --accent: #2d6ef6;
  --accent-hover: #1a58e0;
  --sidebar-width: 240px;
  --ad-col-width: 300px;
  --topbar-height: 52px;
  --radius: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  --error-bg: #fff5f5;
  --error-border: #fc8181;
  --success-bg: #f0fff4;
  --success-border: #68d391;
}

/* Base Typography */
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

p {
  color: var(--text-2);
}

ol, ul {
  padding-left: 1.25rem;
}

li {
  color: var(--text-2);
  margin-bottom: 0.25rem;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
