#splash-screen-inline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF8EE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  overflow: hidden;
  pointer-events: none;
}

#splash-screen-inline.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.splash-title-inline {
  font-size: 2.75rem;
  font-weight: 400;
  color: #593710;
  margin: 0 0 8px 0;
  font-family: "Bodoni 72 Oldstyle", serif !important;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.2;
  opacity: 0;
  animation: textRevealInline 1.2s ease-out 0.3s forwards;
  text-shadow: 0 2px 4px rgba(89, 55, 16, 0.1);
}

.splash-subtitle-inline {
  font-size: 1.25rem;
  font-weight: 300;
  color: #8A7A66;
  margin: 0;
  font-family: "Onest", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.4;
  opacity: 0;
  animation: textRevealInline 1.2s ease-out 0.6s forwards;
}

@keyframes textRevealInline {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#starfield-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

