:root {
  --bg: #fafafa;
  --text: #222;
  --accent: #e4a853;
  --nav-bg: #fff;
  --content-bg: #fff;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: var(--nav-bg);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}

nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

main {
  background: var(--content-bg);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.post {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.post:last-child {
  border-bottom: none;
}

.post h2 {
  margin-bottom: 0.25rem;
}

.post .meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.post .type {
  display: inline-block;
  background: #eee;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

footer {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

button, .btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
}

button:hover, .btn:hover {
  opacity: 0.9;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}
