/* ============================================================
   panic.blue — DOS code block chrome
   ============================================================ */

/* Giallo wrapping elements */
.z-code {
  font-family: var(--font-pixel);
  font-size: 14px;
  line-height: 1.4;
  image-rendering: pixelated;
}

/* Code blocks inside post body get DOS panel treatment */
.post-body pre {
  margin: 14px 0;
  border: 1px solid #555;
  background: #000;
  position: relative;
  overflow: hidden;
}

.post-body pre code,
.post-body pre .z-code {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-pixel);
  font-size: 14px;
  line-height: 1.4;
  overflow-x: auto;
  background: transparent;
  white-space: pre;
}

/* Inline code in post body */
.post-body code:not(pre code) {
  color: var(--dos-yellow);
  background: rgba(255,255,85,0.1);
  padding: 0 3px;
  font-family: var(--font-pixel);
  font-size: 14px;
}

/* BSOD context inline code */
.bsod code:not(pre code) {
  color: var(--dos-yellow);
}
