html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  overflow: hidden;
}

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #043a40;
  color: #d4e8e8;
  font-family: "Courier New", monospace;
  opacity: 1;
  transition: opacity 0.8s ease; /* smoother fade */
}

#splash-screen.fade-out {
  opacity: 0;
}

.splash-text {
  text-align: center;
  line-height: 1.6;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
}

.splash-text p {
  margin: 4px 0;
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
