/* ASCII art block in terminal header */
.terminal-ascii {
  margin: 0;
  font-family: monospace;
  font-size: 1em;
  pointer-events: none;
  user-select: none;
}
body {
    margin: 0;
    background: #1c1d20; /* BACKGROUND COLOR */
    font-family: monospace;
    font-size: 16px;
    padding: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  #terminal {
    max-width: 700px; /* or whatever width you want */
    margin: 40px auto 0 auto; /* center the terminal on the page */
    background: #1c1d20;
    padding: 24px 24px 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  }
  
  .line {
    margin-bottom: 10px;
  }
  
  .input-line {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    position: static;
    left: 0;
  }
  
  input {
    background: #1c1d20;
    color: #ffffff;
    border: none;
    outline: none;
    font-family: monospace;
    font-size: 16px;
    width: 100%;
  }
  
  .audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .centerMiddle {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#cursor {
  display: inline-block;
  width: 10px;
  height: 20px;
  background-color: rgb(255, 255, 255);
}



.helpo ut {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

/* ...existing code... */
@media (min-width: 561px) {
  #mainContentWrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
    position: static;
  }
  #centerright {
    position: static;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    z-index: 10;
  }
}

.prompt {
  margin-right: 8px;
  margin-left: 0;
  padding: 0;
  text-align: left;
}

#commandOutput, #userInputText {
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  position: static;
  left: 0;
  background: none;
  box-sizing: border-box;
}

#commandOutput ul, #commandOutput ol {
  margin: 0 0 0 1.5em;
  padding: 0;
  text-align: left;
}

body,
#terminal,
#mainContentWrapper,
#centerright,
#bottomBar,
.input-line,
.prompt,
input,
pre,
h1, h2, h3, h4, h5, h6,
p,
ul,
li {
  color: #d1d1d1; ;
}

#commandinput {
  position: static !important;
  width: auto !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
  left: 0 !important;
  transform: none !important;
  display: block !important;
}

#commandinput ul, #commandinput ol {
  margin-left: 0 !important;
  padding-left: 1.5em !important;
  text-align: left !important;
  
}

#command { /* help command */
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 16px #ffffff,
        0 0 32px #ffffff;
}

#command:hover {
  color: rgb(244, 250, 64);
}

#UwU {
    color: #ffffff;
    text-shadow:
        0 0 8px #ffffff,
        0 0 16px #ffffff,
        0 0 32px #ffffff;
    text-align: right;
}

/* Add to style.css */
.glow {
  color: #ffffff;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ffffff;
}

.glow5 {
  color: #ffffff;
}

.glow1 {
  color: #f69420;
}

#version {
  position: absolute;
  top: 16px;
  right: 24px;
  margin: 0;
  z-index: 100;
  font-size: 1rem;
  text-align: right;
  width: auto;
  background: none;
  pointer-events: none; /* Optional: makes it unclickable */
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}
#topBar, #terminal, #bottomBar {
  position: relative;
  z-index: 1;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}


/* License bar inside topBar, right under Version */
#licenseBar {
  position: absolute;
  top: 60px; /* just under #version */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  color: #d1d1d1;
  background: none;
  z-index: 101;
  padding: 0;
}
#licenseBar img {
  height: 27px;
  margin: 0 0 2px 0;
}

#licenseBar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* unvisited link */
a:link {
  color: rgb(255, 255, 255);
}

/* visited link */
a:visited {
  color: rgb(255, 255, 255);
}

/* mouse over link */
a:hover {
  color: rgb(170, 144, 255);
}

