

/* MAIN CONTENT stays absolutely centered inside the frame */
#core-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ Center the entire stack */
  align-items: center;
  gap: 1.5rem; /* optional clean spacing */
  text-align: center;
  cursor: pointer;
}

/* LOGO + WELCOME */
#cover-logo {
  max-width: 50vw;
  height: auto;
  display: block;
  animation: flickerGlow 5.5s infinite ease-in-out;
}

#welcome-line {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.5px;
  transform: translateX(-1px); /* 🧠 nudge to correct optical bias */
}

#next-prompt {
  font-size: 1.5rem;
  color: rgb(253, 143, 207);
  animation: pulseArrow 1.2s infinite;
  opacity: 1;
  bottom: 4%;
}

@keyframes pulseArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}