:root {
  --bg-primary: #fafafa;
  --text-primary: #1a1a1a;
  --text-secondary: #333;
  --text-muted: #666;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --border-light: #e5e5e5;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-serif);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
}

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9em;
  margin-bottom: 30px;
  transition: color 0.2s ease;
}

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

h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 1.5em;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 1em;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.5em;
  font-size: 1.05em;
}

.subtitle {
  font-size: 1.2em;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}

.poetic {
  font-style: italic;
  color: var(--text-muted);
  margin: 2em 0;
}

.poetic-closing {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid var(--border-light);
}

img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

em {
  font-style: italic;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.opening {
  font-size: 1.15em;
  font-weight: 500;
  margin-bottom: 2em;
}

ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.5em;
}

@media (max-width: 600px) {
  body {
    padding: 70px 16px 40px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  .subtitle {
    font-size: 1.1em;
  }
  
  .site-nav {
    padding: 10px 16px;
  }
  
  .site-nav .nav-links {
    gap: 16px;
  }
  
  .site-nav .nav-links a {
    font-size: 0.85em;
  }
}
