#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #EDE8DF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
  transition: opacity 1s ease;
}
#splash.fade-out { opacity: 0; }

#splash-text {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 48px;
}

#splash-title {
  font-family: 'Pacifico', cursive;
  font-size: 30px;
  font-weight: 400;
  color: #8A8078;
  min-height: 42px;
  letter-spacing: 0.3px;
}

.splash-cursor {
  display: inline-block;
  width: 2px;
  height: 0.82em;
  background: #A09888;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: splash-blink 0.85s step-end infinite;
}
@keyframes splash-blink { 50% { opacity: 0; } }

#splash-globe-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#splash-canvas { display: block; }

#splash-runner {
  position: absolute;
  width: 88px;
  height: 88px;
  object-fit: contain;
  transform-origin: center bottom;
  animation: splash-bob 0.38s ease-in-out infinite;
  pointer-events: none;
  z-index: 20;
}
@keyframes splash-bob {
  0%, 100% { margin-bottom: 0; }
  50%       { margin-bottom: 7px; }
}
