#container {
  height: 100%;
  display: flex;
  justify-content: center;   
  align-items: flex-end;    
  gap: 5vw;                
}

#computer-screen {
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
}

#computer-screen-bezel {
  background: #2a2a2a;
  border: 4px solid #444;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  width: 100%;
}

#computer-screen-display {
  background: #0a0a0a;
  border: 2px solid #00ff00;
  border-radius: 4px;
  padding: 15px;
  height: 100%;
  transition: opacity 0.6s ease, background 0.6s ease;
}

#computer-screen-display.on {
  background: #001100;
  border-color: #00ff00;
  box-shadow: inset 0 0 20px #00ff00;
}

#computer-screen-display.off {
  background: #000;
  filter: brightness(0);
  box-shadow: inset 0 0 6px #00ff00; 
  border-color: #00ff00;             
  transition:
    filter 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease;
}


#computer-screen-stand {
  background: #2a2a2a;
  height: 10%;
  width: 10%;

  display: flex;
  justify-content: center;   
  align-items: flex-end;     
}

#computer-screen-stand-base {
  height: 10%;   
  width: 20%;   
  background: #2a2a2a;
}

#computer-case {
  width: 10vw;
  height: 20vw;
  background: #2a2a2a;
  border: 4px solid #444;
  border-radius: 6px;
  position: relative;
}

#power-button {
  width: 30px;
  height: 30px;
  background: #111;
  border: 2px solid #00ff00;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

#power-button.on {
  background: #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.boot-text {
  font-family: "Courier New", monospace;
  color: #00ff00;
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 0 4px #00ff00;
}

.boot-text div {
  white-space: pre;
}

.terminal {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Courier New", monospace;
  color: #00ff00;
  background: black;
  padding: 10px;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 13px;
}

.terminal-input-line {
  display: flex;
  gap: 6px;
}

.prompt {
  color: #00ff00;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #00ff00;
  font-family: inherit;
  font-size: 13px;
}
