/* General Styles */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  padding: 1rem 0;
  text-align: left;
}

.site-title-left {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.site-nav {
  margin-top: 0.5rem;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 0.5rem 0;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: #ccc; /* a bit lighter than before */
  font-weight: 600; /* was 500 */
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.site-nav a:hover {
  background-color: #2c2c2c;
  color: #fff;
}

.site-nav a.active {
  background-color: #444;
  color: #fff;
}

/* Post */
.post {
  background-color: #1e1e1e;
  margin: 1.2rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.post h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
}

.post-content-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 1rem 0 0.8rem 0;
}

.content {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

/* Post Meta (Tags + Date) */
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.post-tags {
  display: inline-block;
}

.post-tags .tag {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.2rem 0.5rem;
  background-color: #2c2c2c;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #ddd;
  text-decoration: none;
}

.post-tags .tag:hover {
  background-color: #444;
  color: #fff;
}

.post-date {
  color: #999;
  font-size: 0.85rem;
}

/* Tags list page */
.tags-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.tags-list li {
  margin: 0.3rem 0;
}

.tags-list a {
  color: #bbb;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.tags-list a:hover {
  background-color: #2c2c2c;
  color: #fff;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin: 2rem 0 1rem 0;
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
}

