#uc-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 3.5s ease;
}
#uc-intro-overlay.uc-fade-out {
  opacity: 0;
  pointer-events: none;
}
.uc-intro-logo {
  width: 280px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 4.5s ease-in-out, transform 4.5s cubic-bezier(0.34, 0, 0.2, 1);
}

.uc-intro-logo.uc-show {
  opacity: 1;
  transform: scale(1);
}
.uc-intro-logo.uc-voyage {
  transition: transform 2.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 1s ease 1.4s;
}
.uc-intro-welcome {
  font-family: 'Birthstone', cursive;
  font-size: 2.4rem;
  color: #d4a445;
  opacity: 0;
  margin-top: 20px;
  transition: opacity 2.4s ease;
}
.uc-intro-welcome.uc-show {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  #uc-intro-overlay, .uc-intro-logo, .uc-intro-welcome { transition: none; }
}
