/* Rose Pine Dark - Professional */
:root {
  --rp-base: #191724;
  --rp-surface: #1f1d2e;
  --rp-overlay: #26233a;
  --rp-muted: #6e6a86;
  --rp-subtle: #908caa;
  --rp-text: #e0def4;
  --rp-love: #eb6f92;
  --rp-gold: #f6c177;
  --rp-rose: #ebbcba;
  --rp-pine: #31748f;
  --rp-foam: #9ccfd8;
  --rp-iris: #c4a7e7;
  --rp-highlight-low: #21202e;
  --rp-highlight-med: #403d52;
  --rp-highlight-high: #524f67;
}

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

body {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 15px;
  line-height: 1.7;
  color: var(--rp-text);
  background-color: var(--rp-base);
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

header {
  border-bottom: 1px solid var(--rp-highlight-med);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

header h1 a {
  color: var(--rp-rose);
  text-decoration: none;
  border: none;
}

nav { display: flex; gap: 1.5rem; }

nav a {
  color: var(--rp-subtle);
  text-decoration: none;
  border: none;
  font-size: 0.9rem;
}

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

main { min-height: 60vh; }

h1, h2, h3 {
  color: var(--rp-rose);
  font-weight: 600;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

h1 { font-size: 1.8rem; color: var(--rp-iris); }
h2 { font-size: 1.4rem; border-bottom: 1px solid var(--rp-highlight-low); padding-bottom: 0.5rem; }
h3 { font-size: 1.2rem; color: var(--rp-pine); }

p { margin-bottom: 1.5rem; color: var(--rp-subtle); }

a {
  color: var(--rp-foam);
  text-decoration: none;
  border-bottom: 1px solid var(--rp-highlight-med);
}

a:hover {
  color: var(--rp-iris);
  border-bottom-color: var(--rp-iris);
}

ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--rp-subtle);
}

li { margin-bottom: 0.5rem; }

pre {
  background: var(--rp-surface);
  border: 1px solid var(--rp-highlight-low);
  border-radius: 6px;
  padding: 1rem;
  margin: 1.5rem 0;
  overflow-x: auto;
}

code {
  font-family: "JetBrains Mono", monospace;
  background: var(--rp-overlay);
  color: var(--rp-foam);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

pre code { background: none; padding: 0; }

strong { color: var(--rp-text); }

footer {
  border-top: 1px solid var(--rp-highlight-med);
  margin-top: 4rem;
  padding-top: 2rem;
  color: var(--rp-muted);
  font-size: 0.85rem;
}

.post-list { list-style: none; padding: 0; }

.post-list li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rp-highlight-low);
}

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

.post-meta {
  color: var(--rp-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.post-title a { border: none; color: var(--rp-text); }
.post-title a:hover { color: var(--rp-foam); }

.tag {
  display: inline-block;
  background: var(--rp-surface);
  color: var(--rp-gold);
  padding: 0.2rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid var(--rp-highlight-low);
}
