/* Bootstrap/Splash Screen Styles */

.splash-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
}

.splash-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
}

.splash-logo {
  width: 30vw;
  pointer-events: none;
}

/* Loading state - hide content until ready */
body.loading .main-content {
  opacity: 0;
}

body:not(.loading) .main-content {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

