body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.splash-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
body.splash-active { overflow: hidden; }

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929F;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929F;
}


#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
