/* UNI:SOL Intro Splash — 최초 1회 풀스크린 영상 */
.unisol-splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ACACAC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 400ms ease;
}

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

.unisol-splash-video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #ACACAC;
}

.unisol-splash-fallback {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.unisol-splash-skip {
  position: absolute;
  top: max(20px, env(safe-area-inset-top, 20px));
  right: max(20px, env(safe-area-inset-right, 20px));
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  transition: background 0.15s;
}

.unisol-splash-skip:hover,
.unisol-splash-skip:active {
  background: rgba(0, 0, 0, 0.7);
}

.unisol-splash-skip::after {
  content: " →";
}

/* 접근성: 모션 민감 사용자는 정적 이미지만 */
@media (prefers-reduced-motion: reduce) {
  .unisol-splash-video {
    display: none;
  }
  .unisol-splash-overlay .unisol-splash-fallback {
    display: block !important;
  }
}
