* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: -0.05em;
}

html {
  font-size: 18px;
}

body {
  min-height: 100vh;
  background-color: #0a0a09;
  padding: 40px 20px;
  font-family: "Courier Prime", "Courier New", monospace;
  color: #a8a398;
  font-size: 1rem;
  line-height: 1.75;
}

.page {
  max-width: 640px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #d0cbc0;
}

/* Header */
header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1f1e1c;
}

.header-title {
  color: #706b62;
  letter-spacing: 0.25em;
}

.header-title:hover {
  color: #8a857c;
}

.header-sub {
  color: #4a4740;
  margin-top: 4px;
  letter-spacing: -0.05em;
}

/* Entries list */
.entries {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.entry {
  padding-bottom: 32px;
  border-bottom: 1px solid #151412;
}

.entry-header {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  color: #4a4740;
}

.entry-image-link {
  display: block;
  margin-bottom: 16px;
}

.entry-image {
  width: 100%;
  height: auto;
  border: 1px solid #1f1e1c;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.entry-image-link:hover .entry-image {
  opacity: 1;
}

.entry-link {
  color: #c8c3b8;
  display: block;
  margin-bottom: 12px;
}

.entry-link:hover {
  color: #d0cbc0;
}

.entry-excerpt {
  color: #6a655c;
}

/* Single post */
.post {
  margin-bottom: 48px;
}

.post-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1f1e1c;
}

.post-id {
  color: #4a4740;
  margin-bottom: 12px;
}

.post-title {
  font-weight: normal;
  color: #c8c3b8;
  margin-bottom: 8px;
}

.post-content {
  color: #a8a398;
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border: 1px solid #1f1e1c;
}

.post-content iframe {
  max-width: 100%;
  margin: 24px 0;
}

.post-content a {
  color: #c8c3b8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: #d0cbc0;
}

.post-content blockquote {
  border-left: 2px solid #2a2826;
  padding-left: 16px;
  margin: 24px 0;
  color: #6a655c;
  font-style: italic;
}

.post-content code {
  background: #0d0d0c;
  padding: 2px 6px;
  border: 1px solid #1a1918;
}

.post-content pre {
  background: #0d0d0c;
  padding: 16px;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid #1a1918;
}

.post-content pre code {
  background: none;
  padding: 0;
  border: none;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: #4a4740;
}

.back-link:hover {
  color: #5a5650;
}

/* Footer */
footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #151412;
  color: #2a2622;
}
