/* === Base styles === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #000;
  color: #00ff00;
}

/* === Terminal window === */
.terminal {
  max-width: 800px;
  margin: 40px auto;
  border: 2px solid #00ff00;
  padding: 20px;
  background-color: #111;
  box-shadow: 0 0 20px #00ff00;
}

.prompt {
  color: #ff00ff;
}

input, button {
  font-family: inherit;
  font-size: 1em;
  background-color: #000;
  color: #00ff00;
  border: 1px solid #00ff00;
  margin-top: 10px;
  padding: 5px;
}

button:hover {
  background-color: #00ff00;
  color: #000;
  cursor: pointer;
}

.input {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.input input {
  background: none;
  border: none;
  color: #00ff00;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  width: 100%;
}

#commandOutput p {
  margin: 5px 0;
}

a {
  color: #00ffff;
  text-decoration: underline;
}

/* === Win95 Boot Overlay === */
#win95Desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  font-family: 'Courier New', monospace;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.win95-boot {
  background: #000;
  color: #00ff00;
  border: 2px solid #00ff00;
  padding: 20px 30px;
  box-shadow: 0 0 20px #00ff00;
  white-space: pre;
  z-index: 101;
  font-family: 'Courier New', monospace;
}
