html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  padding: 16px;
  font-family: "Fira Mono", "Consolas", "Monaco", monospace;
  color: #00ff00;
  position: relative;
  min-height: 100vh;
  background: #111;
}
body.light-mode {
  background: #f5f5f5;
  color: #333;
}

.terminal {
  max-width: 700px;
  margin: 40px auto;
  background: #181818;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  padding: 32px 24px 24px 24px;
  border: 2px solid #333;
  position: relative;
  z-index: 1;
}
body.light-mode .terminal {
  background: #f5f5f5;
  border: 2px solid #bbb;
  box-shadow: 0 0 10px #bbb;
}

.terminal-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  background: #232323;
  padding: 8px;
  border-radius: 4px;
}
body.light-mode .terminal-header {
  background: #e0e0e0;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}
.terminal-dot.dot-red {
  background: #ff5f56;
}
.terminal-dot.dot-yellow {
  background: #ffbd2e;
}
.terminal-dot.dot-green {
  background: #27c93f;
}

a {
  color: #00ff00;
  text-decoration: underline;
}
a:hover {
  color: #fff;
}
body.light-mode a {
  color: #008000;
}
body.light-mode a:hover {
  color: #222;
}

.post-date {
  font-size: 0.9em;
  color: #00cc00;
  margin-left: 8px;
}
body.light-mode .post-date {
  color: rgb(0, 102.4, 0);
}

.post-list {
  list-style: none;
  padding: 0;
}
.post-list li {
  margin-bottom: 8px;
}

.image-matrix-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.image-matrix-wrapper img {
  max-height: 200px;
  border-radius: 8px;
  display: none;
}
.image-matrix-wrapper img.matrix-img-dark {
  display: block;
}
body.light-mode .image-matrix-wrapper img.matrix-img-dark {
  display: none;
}
body.light-mode .image-matrix-wrapper img.matrix-img-light {
  display: block;
}

pre, code {
  font-family: "Fira Mono", "Consolas", "Monaco", monospace;
}

pre {
  background: #222;
  color: #00ff00;
  border-radius: 6px;
  padding: 16px 18px;
  margin: 18px 0;
  font-size: 1em;
  overflow-x: auto;
  border: 1.5px solid #444;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5333333333);
  white-space: pre-wrap;
  word-break: break-word;
}

body.light-mode pre {
  background: #f0f0f0;
  color: #008000;
  border: 1.5px solid #bbb;
  box-shadow: 0 2px 12px rgba(187, 187, 187, 0.5333333333);
}

code {
  background: #232323;
  color: #00ff00;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.98em;
  word-break: break-word;
}

body.light-mode code {
  background: #e0e0e0;
  color: #008000;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
  white-space: pre-wrap;
  word-break: break-word;
}

/*# sourceMappingURL=style.css.map */
