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

body {
  background: #0d0d0d;
  color: #d8d8d8;
  font-family: 'Courier New', monospace;
  line-height: 1.9;
  font-size: 19px;
}

header {
  border-bottom: 1px solid #222;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 2rem;
  color: #00ff88;
  letter-spacing: 4px;
  text-transform: uppercase;
}

header h1 span {
  color: #ff3366;
}

nav a {
  color: #888;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ff88;
}

.glitch-status {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-left: 3px solid #00ff88;
  padding: 1.2rem 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  font-size: 0.95rem;
  color: #777;
}

.glitch-status span {
  color: #00ff88;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.post-card {
  border-bottom: 1px solid #1a1a1a;
  padding: 2.5rem 0;
}

.post-card .post-date {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.post-card h2 {
  font-size: 1.6rem;
  margin: 0.5rem 0 1rem;
}

.post-card h2 a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.post-card h2 a:hover {
  color: #00ff88;
}

.post-card .post-excerpt {
  color: #888;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.post-card .post-tag {
  display: inline-block;
  background: #1a1a1a;
  color: #00ff88;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: #ff3366;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid #111;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #444;
  letter-spacing: 2px;
}

/* Individual Post Page */
.post-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.post-content .post-date {
  font-size: 0.85rem;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.post-content h1 {
  font-size: 2.2rem;
  color: #e8e8e8;
  margin: 0.5rem 0 2rem;
  line-height: 1.3;
}

.post-content h2 {
  color: #00ffff;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.post-content p {
  margin-bottom: 1.6rem;
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.9;
}

.post-content em {
  color: #ff6688;
}

.post-content strong {
  color: #e0e0e0;
}

.mood-section {
  background: rgba(0,255,136,0.08);
  border: 1px solid #00ff8844;
  padding: 2rem;
  border-radius: 8px;
  margin: 2.5rem 0;
}

.mood-section h2 {
  margin-top: 0;
  color: #00ff88;
}

.mood-section p {
  margin-bottom: 0.8rem;
  color: #999;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: #00ff88;
}

/* About page */
.about-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-content h1 {
  font-size: 2rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
}

.about-content p {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Mobile */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  nav a {
    margin: 0 0.8rem;
  }
  
  body {
    font-size: 16px;
  }
  
  .post-content h1 {
    font-size: 1.7rem;
  }
}
