/* Splash Screen */
#splash{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:#0a0f1a;z-index:9998}
#splash .inner{display:flex;flex-direction:column;align-items:center;gap:14px;color:#c7d2fe}
#splash img{width:96px;height:96px;opacity:1;background:transparent}
#splash .brand{font-weight:600;letter-spacing:.3px}

/* Ensure logo transparency - try to remove black background */
.header img, #splash img {
  background: transparent !important;
  border: none !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 0 transparent);
}

/* Force transparency by removing any background color */
.header img {
  background: transparent !important;
  border: none !important;
  opacity: 1 !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Logo transparency - new transparent logos */
.header img, #splash img {
  background: transparent !important;
}








