.index .bg-container {
  background-image: url("../assets/images/background/bg_main.webp");
}

/* 클릭 안내 텍스트 */
.index .click-to-start {
  position: absolute;
  bottom: 162px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 12px 48px;
  border-radius: 50px;
  text-shadow: 2px 2px 4px #000;
  cursor: pointer;
  animation: blink 1.5s infinite;
}

#intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
  z-index: 999;
}

#skip-intro {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 24px;
  color: #00ffff;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.7;
  transition: opacity 0.3s;
}
#skip-intro:hover {
  opacity: 1;
  text-decoration: underline;
}

#video-blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  background: black;
  z-index: 998;
  opacity: 1;
  transition: opacity 1s;
  pointer-events: none;
}
