/* 인트로 페이지 - 도메인 첫 접속 화면 */
.intro-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-doodle {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
