body, html {
  margin: 0;
  height: 100%;
  font-family: monospace;
  background: #0d0d0d;
  color: #00ffcc;
  overflow: hidden;
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

#eye {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 240px;
  height: auto;
  z-index: 2;
  animation: blink 6s infinite;
}

#eye:hover {
  animation: wink 0.4s forwards;
}

@keyframes wink {
  0% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
  100% { transform: scaleY(1); }
}

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  92%, 95% { transform: scaleY(0.1); }
}


.terminal {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 800px;
  margin: 50px auto;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border: 2px solid #00ffcc;
  border-radius: 8px;
  box-shadow: 0 0 20px #00ffcc;
}

.output {
  height: 300px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.input-line {
  display: flex;
  gap: 5px;
}

.input-line span {
  color: #ff00ff;
}

.input-line input {
  background: transparent;
  border: none;
  color: #00ffcc;
  flex: 1;
  outline: none;
  font-family: monospace;
}