/* src/styles/startup.css */

.startup-screen,
#startup-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(100vh - env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: #000000;
  color: #ffffff;
  font-family: "Ubuntu Mono", monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 500;
  cursor: pointer;
  box-sizing: border-box;
}

#startup-screen:hover {
  background: #0a0a0a;
}

.startup-title,
#startup-screen > div:first-child {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.startup-subtitle,
#startup-subtitle {
  font-size: 18px;
  color: #00ff00;
  display: flex;
  align-items: center;
  gap: 4px;
}

#startup-cursor {
  color: #00ff00;
  animation: blink 1.2s infinite;
  font-weight: normal;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.fullscreen-overlay,
.simulation-startup-container,
.system-crash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(100vh - env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: #000000;
  color: #ffffff;
  font-family: "Ubuntu Mono", monospace;
  overflow: hidden;
  z-index: 450;
  opacity: 0;
  margin: 0;
  box-sizing: border-box;
}

.simulation-startup-content,
.system-crash-content {
  padding: 24px;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #000000;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}

.simulation-startup-content::-webkit-scrollbar,
.system-crash-content::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .simulation-startup-container,
  .system-crash-container {
    font-size: 12px;
    line-height: 1.1;
  }

  .simulation-startup-content .system-crash-content {
    padding: 10px;
  }
}

@media (min-width: 769px) {
  .simulation-startup-container,
  .system-crash-container {
    font-size: 14px;
    line-height: 1.2;
  }
}
