/* Boot sequence overlay: BIOS POST -> DOS -> OS load -> BSOD -> AMEN */

#boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  margin: 0;
  padding: 1.2rem 1.4rem;
  background: #000000;
  color: #c8c8c8;
  font-family: "Lucida Console", "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.25;
  overflow: hidden;
  white-space: pre-wrap;
  cursor: pointer;
}

#boot[hidden] {
  display: none !important;
}

#boot .bios-head {
  color: #ffffff;
}

#boot .amber {
  color: #ffb000;
}

#boot .dim {
  color: #8a8a8a;
}

#boot .cur::after {
  content: "_";
  color: #c8c8c8;
}

#boot .skip {
  position: absolute;
  right: 1.4rem;
  bottom: 1.1rem;
  color: #6a6a6a;
  font-size: 0.75rem;
}

/* DOS phase */
#boot.dos {
  color: #c8c8c8;
}

/* OS load phase — plain text, no trademarks, no graphics */
#boot.osload {
  color: #e6e6e6;
}

/* BSOD phase */
#boot.bsod {
  background: #0000aa;
  color: #ffffff;
  padding: 2.2rem 1.6rem;
  font-size: 1rem;
}

#boot.bsod .stopline {
  background: #aaaaaa;
  color: #0000aa;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* AMEN phase */
#boot.amen {
  background: #0000aa;
  color: #55ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  #boot {
    font-size: 0.78rem;
    padding: 0.9rem 0.8rem;
  }

  #boot.amen {
    font-size: 1.6rem;
  }
}
