body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.glass {
  background: rgba(28, 27, 106, 0.15);
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px 0 rgba(7, 7, 7, 0.626);
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

body {
  background: none !important; /* remove fallback background */
}