html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
  color: #15ff52;
  font-family: Consolas, 'Courier New', monospace;
}

#out {
  width: 100%;
  height: 100%;
}

.avalonia-splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.avalonia-splash.loaded {
  opacity: 0;
  pointer-events: none;
}

.splash-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #15ff52;
  letter-spacing: 0.3em;
  text-shadow: 0 0 20px #15ff52;
}

.splash-subtitle {
  font-size: 0.9rem;
  color: #0d9930;
  margin-top: 12px;
  letter-spacing: 0.2em;
}
