/* 
 * 스플래시 화면 CSS
 * 독립적인 스코프로 다른 스타일과 충돌하지 않도록 함
 */

#bsnamgu-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #444a6a;
  z-index: 10000; /* 매우 높은 z-index로 모든 요소 위에 표시 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}

#bsnamgu-splash-screen.hiding {
  opacity: 0;
}

#bsnamgu-splash-screen img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 반응형 처리 */
@media (max-width: 480px) {
  #bsnamgu-splash-screen img {
    max-width: 90%;
  }
}

/* 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
  #bsnamgu-splash-screen {
    transition: opacity 0.2s ease-out;
  }
}
