body {
  background: #1a1a1a;
  color: #cccccc;
  font-family: monospace;
  font-size: 14px;
  max-width: 600px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.6;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 24px 0;
}

.header {
  color: #888;
  font-size: 12px;
  margin-bottom: 4px;
}

h1 {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: 0.05em;
}

.meta {
  color: #555;
  font-size: 11px;
  margin-bottom: 32px;
}

.section {
  color: #666;
  font-size: 11px;
  margin: 28px 0 12px 0;
}

.stanza {
  margin-bottom: 20px;
}

.bright {
  color: #eee;
}

.footer {
  margin-top: 40px;
  color: #444;
  font-size: 11px;
}

/* --- Site-wide additions below (shared across all pages) --- */

.back-link {
  display: inline-block;
  color: #666;
  font-size: 11px;
  text-decoration: none;
  margin-bottom: 24px;
  border: 1px solid #333;
  padding: 4px 10px;
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.back-link:hover {
  color: #cccccc;
  border-color: #666;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #444;
  filter: grayscale(40%);
  margin-bottom: 16px;
}

.links {
  margin-bottom: 24px;
}

.links a {
  color: #888;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px dotted #555;
}

.links a:hover {
  color: #eee;
}

button {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 8px 16px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

button:hover {
  border-color: #888;
  color: #fff;
}

button:disabled {
  cursor: default;
}

.secret-mode {
  color: #e06c75 !important;
  font-style: italic;
}

/* Project / works grid */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.project-card {
  border: 1px solid #333;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.project-card:hover {
  border-color: #666;
}

.project-card h3 {
  margin: 0 0 4px 0;
  font-size: 12px;
  color: #fff;
  font-weight: normal;
}

.project-card p {
  margin: 0;
  font-size: 11px;
  color: #777;
}

@media (max-width: 480px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.works-list a {
  text-decoration: none;
  color: #ccc;
  padding: 8px 10px;
  border: 1px solid #333;
  border-radius: 3px;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
}

.works-list a:hover {
  border-color: #666;
  color: #fff;
}
