@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');


.terminal-body {
    background-color: #050a05;
    height: 500px;
    padding: 25px;
    overflow-y: auto;
    font-family: 'VT323', monospace;
    font-size: 1.6rem; /* Slightly larger for readability */
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
    line-height: 1.2;
  animation: hardware-flicker 0.1s infinite;
}
	@keyframes hardware-flicker {
	  0% { opacity: 0.97; }
	  5% { opacity: 0.92; }
	  10% { opacity: 0.98; }
	  15% { opacity: 0.94; }
	  20% { opacity: 0.99; }
	  100% { opacity: 1; }
}

/* The Input Area Container */
.input-line {
    display: flex;
    position: relative;
    margin-top: 10px;
}

/* The Prompt (now part of the UI, not typed) */
.input-line::before {
    content: ">";
    margin-right: 12px;
    color: #00ff41;
}

/* The Input Field itself */
#user-input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important; /* Removes Foundation's default blue glow */
    outline: none !important;    /* Removes the browser focus outline */
    color: #00ff41;
    font-family: 'VT323', monospace;
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
    width: 100%;
    caret-color: #00ff41; /* Makes the native cursor green */
}

/* Optional: Custom Block Cursor */
/* If you want the 'thick block' cursor instead of a line */
#user-input {
    caret-shape: block; /* Works in modern browsers */
}

/* Scanning effect (Very subtle) */
.terminal-container::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0% { opacity: 0.1; }
  50% { opacity: 0.2; }
  100% { opacity: 0.1; }
}
.terminal-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.05) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
}
.terminal-vibrate {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    animation-iteration-count: infinite;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

body {
    transition: transform 0.5s ease; /* Makes /askew feel smooth and nauseating */
}