/* 기본 리셋 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* 반응형 뷰포트 처리 */
.desktop {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlap-group {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center !important;
  z-index: 0;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 90%);
  pointer-events: none; /* 클릭 이벤트 방해 안 하게 */
}


.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 60px 20px 150px;
  text-align: center;
}

.text-wrapper {
  font-family: "Paperlogy-7Bold", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 6vw;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 20px;
}

.KSPO-DOME {
  font-family: "Pretendard-Semibold", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.6px;
  color: #fff;
  width: min(80%, 800px);
}

.play-button {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button svg {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button:hover svg {
  transform: scale(1.1);       /* 살짝 커짐 */
  opacity: 0.85;               /* 살짝 밝아짐 */
}






/* 미디어 쿼리 */
@media (min-width: 1920px) {
  .text-wrapper {
    font-size: 100px;
  }
}

@media (max-width: 800px) {
  .text-wrapper {
    font-size: 8vw;
    white-space: normal;
  }

  .KSPO-DOME {
    font-size: 16px;
    width: 90%;
  }
}
