* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B6B;
  --primary-dark: #E85555;
  --text: #333;
  --text-light: #666;
  --bg: #FFFAF9;
  --white: #fff;
  --border: #eee;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a:hover {
  text-decoration: underline;
}

/* Content Pages */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content .updated {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.content p, .content ul, .content ol {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.content ul, .content ol {
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
}
