#boot-screen {
  font-family: 'W95FA', 'MS Sans Serif', monospace;
  background-color: #000;
  color: #00ff00;
  font-size: 16px;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

#boot-log {
  white-space: pre-wrap;
  line-height: 1.6;
  text-shadow: 0 0 5px #00ff00;
  font-family: 'W95FA', 'MS Sans Serif', monospace;
}


/* === Optional: Blinking Cursor === */
.blink-cursor::after {
  content: "_";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}



/* === Windows 95 Font Setup === */
@font-face {
  font-family: 'W95FA';
  src: url('/FONTS/W95FA.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* === Global Body Styling === */
body {
  background-color: #C0C0C0; /* Classic Win95 gray */
  color: black;
  font-family: 'W95FA', 'MS Sans Serif', sans-serif;
  margin: 0;
  padding: 20px;
}

/* === Headings === */
h1, h2, h3 {
  font-family: 'W95FA', 'MS Sans Serif', sans-serif;
  color: #000080; /* Navy blue */
  margin-bottom: 10px;
}

/* === Links === */
a {
  color: #0000FF;
  text-decoration: underline;
}
a:hover {
  color: #FF0000;
}

/* === UI Container === */
.window {
  background-color: #E0E0E0;
  border: 2px solid #FFFFFF;
  border-right-color: #808080;
  border-bottom-color: #808080;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: inset -1px -1px #808080, inset 1px 1px #FFFFFF;
}

/* === Buttons === */
button {
  font-family: 'W95FA', 'MS Sans Serif', sans-serif;
  background-color: #E0E0E0;
  border: 2px solid #FFFFFF;
  border-right-color: #808080;
  border-bottom-color: #808080;
  padding: 5px 10px;
  cursor: pointer;
}
button:active {
  border: 2px solid #808080;
  border-right-color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

/* === Fake Loading Bar === */
.loading-bar {
  width: 100%;
  height: 20px;
  background-color: #C0C0C0;
  border: 2px inset #808080;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.loading-bar::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #000080;
  animation: loading 2s infinite linear;
}

@keyframes loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

.button {
  background-color: #e0e0e0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
  padding: 6px 12px;
  font-family: 'W95FA', 'MS Sans Serif', sans-serif;
}

.audio-panel {
  width: 220px;
  border: 2px solid #000;
  background-color: #c0c0c0;
  box-shadow: inset -1px -1px #fff, inset 1px 1px #808080;
  font-family: 'W95FA', sans-serif;
}

.title-bar {
  background-color: #000080;
  color: white;
  padding: 2px 6px;
  font-weight: bold;
}

.panel-body {
  padding: 8px;
}

body {
  background-image: url('Images/Dreamcore-Weirdcore.jpg'); /* URL-encoded space */
  background-size: cover;        /* fills the screen */
  background-repeat: no-repeat;  /* prevents tiling */
  background-position: center;   /* centers the image */
  background-attachment: fixed;  /* keeps background static while scrolling */
  background-color: #000000;     /* fallback color */
}



body {
  position: relative;
}

.text-box {
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #e0e0e0;
  border: 2px inset #ccc;
  font-family: 'W95FA', monospace;
  line-height: 1.6;
  box-shadow: 4px 4px 0 #999;
}




#box1 {
  z-index: 3;
}
#box2 {
  z-index: 2;
}
#box3 {
  z-index: 1;
}

#box1 { background-color: #c0c0c0; }
#box2 { background-color: #dcdcdc; }
#box3 { background-color: #e0e0e0; }


#box1 { background-color: rgba(192, 192, 192, 0.95); z-index: 3; }
#box2 { background-color: rgba(192, 192, 192, 0.85); z-index: 2; }
#box3 { background-color: rgba(192, 192, 192, 0.75); z-index: 1; }

#box1 {
  top: 80px;
  left: 60px;
  z-index: 3;
  background-color: rgba(192, 192, 192, 0.95);
}

#box2 {
  top: 200px;
  left: 100px;
  z-index: 2;
  background-color: rgba(192, 192, 192, 0.85);
}

#box3 {
  top: 320px;
  left: 140px;
  z-index: 1;
  background-color: rgba(192, 192, 192, 0.75);
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #c0c0c0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #808080;
  display: flex;
  align-items: center;
  padding: 0 6px;
  box-shadow: inset -1px -1px #808080, inset 1px 1px #fff;
  font-family: 'W95FA', 'MS Sans Serif', sans-serif;
  z-index: 9999;
}

.start-button {
  background-color: #e0e0e0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
  padding: 4px 12px;
  font-weight: bold;
  cursor: pointer;
}

.taskbar-spacer {
  flex-grow: 1;
}

.taskbar-clock {
  background-color: #e0e0e0;
  border: 2px inset #808080;
  padding: 4px 8px;
  font-size: 14px;
}

