* { margin: 0; padding: 0; }
body {
  background: #000;
  color: #0f0;
  font-family: "Courier New", Courier, "Lucida Console", monospace;
  font-size: 14px;
  line-height: 1.4;
  cursor: crosshair;
}
a { color: #ff0; text-decoration: none; }
a:hover { color: #fff; background: #f00; }
a:visited { color: #990; }

.marquee {
  white-space: nowrap;
  overflow: hidden;
  color: #ff0;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4px;
  border-top: 2px solid #0f0;
  border-bottom: 2px solid #0f0;
  padding: 8px 0;
  margin: 10px 0;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

pre { font-family: inherit; }

.header {
  text-align: center;
  margin: 6px 0;
}
.header .ascii { color: #0f0; font-size: 11px; line-height: 1.15; white-space: pre; }
.header .subtitle { color: #ff0; font-size: 13px; letter-spacing: 2px; margin: 4px 0; }

.blink { animation: blinker 1s step-end infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px;
}

.section {
  border: 1px solid #0f0;
  margin: 10px 0;
  padding: 6px;
}
.section-title {
  color: #ff0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px dashed #0f0;
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.section-title::before { content: "> "; }
.section-title::after { content: " "; }

.row { margin: 1px 0; word-break: break-all; }
.key { color: #0f0; }
.val { color: #0f0; }
.sep { color: #060; }

.footer {
  text-align: center;
  margin: 20px 0 10px;
  color: #060;
  font-size: 12px;
  border-top: 1px solid #060;
  padding-top: 10px;
}

.small { font-size: 12px; color: #060; }
