@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Roboto:wght@400;700&family=Teko:wght@300..700&family=Viga&display=swap');

#container {
  position: relative;
  min-width: 1280px;
  margin: 0 auto;
  background: #000000;
}
.text_hide {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  z-index: 999;
}
#intro .header_top {
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  height: 60px;
}
#intro .header_top .logo {
  position: absolute;
  top: 17px;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2024/0125/dk_logo.png")
    center 0 no-repeat;
  width: 170px;
  height: 35px;
  left: 40px;
}
#intro .header_top .btn_home {
  position: absolute;
  top: 12px;
  right: 74px;
  width: 36px;
  height: 36px;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/gnbBtn_icon.png")
    0 0 no-repeat;
}
#intro .header_top .btn_home:hover {
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/gnbBtn_icon.png")
    0 -36px no-repeat;
}
#intro .header_top .btn_close {
  position: absolute;
  top: 12px;
  right: 30px;
  width: 36px;
  height: 36px;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/gnbBtn_icon.png")
    -36px 0 no-repeat;
}
#intro .header_top .btn_close:hover {
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/gnbBtn_icon.png")
    -36px -36px no-repeat;
}
#intro .intro_ttl {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 99;
}

.section-01 {
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/top_bg.webp") center center no-repeat;
  width: 100%;
  height: 620px;
}
.section-02 {
  position: relative;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/cont01_2.webp") center top no-repeat;
  width: 100%;
  height: 946px;
}
.section-03 {
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/cont02_1.webp") center top no-repeat;
  width: 100%;
  height: 1412px;
}
.section-02 .btn_notice {
  position: absolute;
  width: 240px;
  height: 46px;
  bottom: 75px;
  left: 50%;
  margin-left: -120px;
  display: block;
}
.section-03 .btn_board {
  position: absolute;
  width: 404px;
  height: 60px;
  bottom: 274px;
  left: 50%;
  margin-left: -204px;
  display: block;
}
.support {
  position: fixed;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/textPattern_bg.png") repeat-x, linear-gradient(to right, #191fa6, #0a1e4a, #191fa6);
  width: 100%;
  height: 92px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.support.show {
    opacity: 1;
    visibility: visible;
}
.support.in-flow {
    position: relative;
    display: block;
    margin-top: -92px;
  }

.support .btn_support {
  display: block;
  width: 100%;
  height: 92px;
  background: url("https://web-files-tokyo-cdn.masangsoft.com/public/DK/event/2025/0731_creators/support_btn.png") center no-repeat;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  color: #747474;
  font-size: 14px;
  background-color: #000000;
}

/* 팝업 */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  width: 340px;
  height: 200px;
  padding: 20px 30px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;         
  justify-content: center;
  font-size: 17px;
  line-height: 1.5em;
  letter-spacing: -0.2px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.closeBtn {
  width: 80px;
  height: 36px;
  border: none;
  background-color: rgb(7, 22, 36);
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}