/* Dracula Theme Variables */
:root {
  --bg:     #282a36;
  --fg:     #f8f8f2;
  --cyan:   #8be9fd;
  --green:  #50fa7b;
  --pink:   #ff79c6;
  --purple: #bd93f9;
  --red:    #ff5555;
  --yellow: #f1fa8c;
  --comment:#6272a4;
}

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Courier New', Courier, monospace;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-screen terminal */
#terminal {
  width: 100%;
  height: 100vh;
  background: var(--bg);
  border-radius: 0;
  box-shadow: none;
}
#bar { display: none; }
#screen { padding: 20px; overflow-y: auto; }

/* Links */
a {
  color: var(--cyan);
  text-decoration: underline;
}

/* Dracula accent colors */
.green { color: var(--green); }
.cyan  { color: var(--cyan); }

/* Command line */
#input-line {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
#prompt {
  white-space: pre;
  color: var(--pink);
}
#cli {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--fg);
  font: inherit;
}

/* Blinking caret (optional) */
@keyframes blink { 50% { opacity: 0; } }
#cli:focus::placeholder { animation: blink 1s infinite; }