:root {
  --primary-text: #222;
  --secondary-text: #222;
  --light-text: #999;
  --accent-text: #000000;
  --background: #fff;
  --border-light: #eee;
  --tag-background: #f5f5f5;
}

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

a {
  text-decoration: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--primary-text);
  background: var(--background);
  overflow-y: scroll;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
}

.page-links {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.name-link {
  text-decoration: none;
  color: inherit;
}

.name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.page-link {
  color: var(--light-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.2s ease;
}

.page-link:hover {
  color: var(--accent-text);
}

.current-page-link {
  color: var(--primary-text);
  font-size: 16px;
  font-weight: 400;
  cursor: default;
}

.footer {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.social-links {
  display: flex;
  gap: 20px;
  font-weight: 300;
  justify-content: center;
}

.social-link {
  color: var(--light-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--accent-text);
}

