html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; 
  background-color: #1a1a1a; 
}

#threeDropGalleryCanvas {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}


#loadingScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* or your brand color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out; /* nice fade-out */
}

.logo-container {
  text-align: center;
}

#logo {
  width: 220px;           /* adjust to your logo size */
  height: auto;
  animation: blink 1.2s infinite alternate ease-in-out;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
}

@keyframes blink {
  from { opacity: 1; }
  to   { opacity: 0.15; }
}

#loadingText {
  color: #909090;
  font-size: 1.4rem;
  margin-top: 20px;
  opacity: 0.9;
}
