* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #0c0c0c;
  font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
  font-size: 14px;
  color: #d4d4d4;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 16px;
}

.term {
  width: 100%;
  max-width: 720px;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
}

.term-bar {
  background: #161b22;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #30363d;
  cursor: move;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #ff5f56; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #27c93f; }
.term-title {
  flex: 1;
  text-align: center;
  color: #8b949e;
  font-size: 12px;
  margin-right: 54px;
}

.term-body {
  padding: 22px 24px 30px 24px;
  line-height: 1.65;
}

.prompt { color: #58a6ff; }
.prompt .path { color: #7ee787; }
.cmd { color: #d4d4d4; }
.comment { color: #8b949e; }

.neofetch {
  display: flex;
  gap: 26px;
  margin: 14px 0 22px 0;
  flex-wrap: wrap;
}

.ascii {
  color: #f78166;
  font-size: 12px;
  line-height: 1.15;
  white-space: pre;
  flex-shrink: 0;
}

.info { font-size: 13px; }
.info-row { margin-bottom: 3px; }
.info-key { color: #d29922; font-weight: bold; }
.info-key.name { color: #f78166; }

.swatches { display: flex; gap: 4px; margin-top: 8px; }
.swatch { width: 16px; height: 16px; border-radius: 2px; }

ul.list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
}
ul.list li { margin-bottom: 4px; }
ul.list li::before { content: "→ "; color: #7ee787; }

a { color: #58a6ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.section { margin-bottom: 20px; }

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #d4d4d4;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
  margin-left: 4px;
}
@keyframes blink { 50% { opacity: 0; } }