/* ===== Splashscreen ===== */
#splash {
  align-items: center;
  background-color: #7c3f8b;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ===== Vídeo ===== */
#splash video {
  animation: fadeInVideo 1.5s ease forwards;
  background: transparent;
  filter: brightness(1.3) contrast(1.2);
  height: auto;
  max-width: 400px;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.97);
  width: 40vw;
}

@keyframes fadeInVideo {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
