/* === BASE (same as staff page) === */

body {
  background: #050505;
  color: #00ff00;
  font-family: "Courier New", monospace;
  margin: 0;
  position: relative;
}

header {
  padding: 20px;
  border-bottom: 1px solid #00ff00;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
}

/* === TERMINAL LAYOUT === */

.terminal-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* === TERMINAL WINDOW === */

.terminal-window {
  border: 1px solid #00ff00;
  padding: 15px;

  box-shadow: 0 0 8px #00ff00;
}

/* header inside terminal */
.terminal-header {
  border-bottom: 1px solid #00ff00;
  padding-bottom: 8px;
  margin-bottom: 10px;

  font-size: 14px;
  opacity: 0.8;
}

/* === OUTPUT AREA === */

.terminal-output {
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;

  white-space: pre-wrap;
  line-height: 1.4;
}

/* === INPUT LINE === */

.terminal-input-line {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.prompt {
  color: #00ff00;
}

/* === INPUT === */

input {
  background: transparent;
  border: none;
  outline: none;

  color: #00ff00;
  font-family: inherit;
  font-size: 14px;

  flex: 1;
}

/* === SCROLLBAR (same vibe) === */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #00ff00;
  border-radius: 5px;
  box-shadow: 0 0 5px #00ff00;
}

/* === SCANLINES (reuse your system identity) === */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05),
    rgba(0, 255, 0, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );

  z-index: 999;
}

input {
  caret-color: #00ff00;
}

/* fake cursor blink (if you want later) */
.cursor {
  display: inline-block;
  width: 8px;
  background: #00ff00;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.logo:hover {
  text-shadow: 0 0 10px #00ff00;
  cursor: pointer;
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  color: #00ff00;
  text-decoration: none;
}