/* === BASE === */
* { cursor: none !important; }
*:hover, *:active, *:focus { cursor: none !important; }

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

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

.logo {
  font-size: 18px;
  letter-spacing: 2px;
  color: #00ff00;
  text-decoration: none;
}

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

/* === 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;
}

.terminal-header {
  border-bottom: 1px solid #00ff00;
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* === OUTPUT === */
.terminal-output {
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  line-height: 1.4;
}

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

.prompt { color: #00ff00; }

input {
  background: transparent;
  border: none;
  outline: none;
  color: #00ff00;
  font-family: inherit;
  font-size: 14px;
  caret-color: #00ff00;
  flex: 1;
}

/* === CURSOR BLINK === */
.cursor {
  display: inline-block;
  width: 8px;
  background: #00ff00;
  animation: blink 1s infinite;
}

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

/* === CUSTOM CURSOR === */
.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 4px #00ff00);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #00ff00; border-radius: 5px; box-shadow: 0 0 5px #00ff00; }

/* === SCANLINES === */
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;
}