#retroos-boot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-bg);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  font-family: var(--font-pixel);
  box-sizing: border-box;
  animation: crt-glow 3s ease-in-out infinite;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

#retroos-boot.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#boot-text {
  white-space: pre-wrap;
  line-height: 2.2;
  font-size: 12px;
  color: var(--color-sand-dune);
  text-shadow: 0 0 8px rgba(132, 169, 192, 0.4);
  word-break: break-word;
}

#boot-progress {
  margin-top: 30px;
  width: 400px;
  max-width: 80%;
  height: 16px;
  border: 2px solid var(--color-dusty-grape);
  background: var(--theme-surface-dark);
  padding: 2px;
  display: none;
  box-sizing: border-box;
}

#boot-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-dusty-grape), var(--color-steel-blue));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--color-steel-blue), 0 0 16px rgba(106, 102, 163, 0.5);
}
