body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  background: #101010;
}
#terminal-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #101010 80%, #1a1a1a 100%);
  z-index: 0;
}
.terminal-area {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  color: #00ff7f;
  font-size: 1.1em;
  padding: 18px 0 18px 32px;
  overflow-y: auto;
  white-space: pre-wrap;
  text-shadow: 0 0 8px #00ff7f, 0 0 16px #00ff7f;
  line-height: 1.5;
  z-index: 1;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 8px;
  background: #222;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
