@charset "UTF-8";
/* 공용 루트 assets/space-hub.css 중 header/footer/side-nav/reset만 추려서 로컬로 옮긴 파일.
   new-final은 공용 assets/ 폴더에 의존하지 않는 독립 배포용 폴더. */

/* ===== reset ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== root vars ===== */
:root {
  --header-height: 78px;
}
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}

/* ===== body base ===== */
html, body {
  height: 100%;
}

body {
  font-family: "YDIYGO";
  color: #fff;
  background: #000;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
}

a {
  color: #fff;
  text-decoration: none;
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

br.mobile {
  display: none;
}
@media (max-width: 767px) {
  br.mobile {
    display: initial;
  }
}

br.pc {
  display: none;
}
@media (min-width: 1024px) {
  br.pc {
    display: initial;
  }
}

/* ===== header (gnb/mobile-menu는 현재 마크업에서 주석처리라 제외, 최소 h1 로고만) ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  -background: rgba(255, 255, 255, 0.1);
  z-index: 2;
  transition: 1s ease opacity;
}
#header h1 {
  position: absolute;
  left: 30px;
  top: 14px;
}
@media (min-width: 1024px) {
  #header h1 {
    z-index: 1;
  }
}
#header h1 a {
  padding: 10px;
  display: block;
}
#header h1 img {
  display: block;
}

/* ===== side-nav (common.js가 자동 주입 — data-section-name이 있는 섹션이 있어 활성화됨) ===== */
.side-sticky-wrap {
  position: absolute;
  right: 40px;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}
.side-sticky-wrap.no-side-nav .sticky:before {
  content: "";
  flex: 1;
}
.side-sticky-wrap .sticky {
  position: sticky;
  bottom: 0;
  height: 100vh;
  -background: red;
  display: flex;
  flex-direction: column;
}
.side-sticky-wrap .sticky .side-nav {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
  text-align: right;
  margin-left: auto;
  flex: 1;
  transform: translateY(25px);
}
.side-sticky-wrap .sticky .side-nav .inwrap {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  min-height: 164px;
  transform: translate3d(10px, -50%, 0);
  pointer-events: auto;
}
.side-sticky-wrap .sticky .side-nav .mask {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 36px;
  -overflow: hidden;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.side-sticky-wrap .sticky .side-nav:not(:hover) ul a:not(.active) {
  opacity: 0;
}
.side-sticky-wrap .sticky .side-nav:hover .mask {
  transform: translate3d(0, var(--mask-y-for-center), 0);
}
.side-sticky-wrap .sticky .side-nav:hover ul a {
  pointer-events: auto;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(1) a {
  transform: translate3d(0, 0px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(2) a {
  transform: translate3d(0, 36px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(3) a {
  transform: translate3d(0, 72px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(4) a {
  transform: translate3d(0, 108px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(5) a {
  transform: translate3d(0, 144px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(6) a {
  transform: translate3d(0, 180px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(7) a {
  transform: translate3d(0, 216px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(8) a {
  transform: translate3d(0, 252px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover ul li:nth-child(9) a {
  transform: translate3d(0, 288px, 0) !important;
  transition-delay: 0s;
}
.side-sticky-wrap .sticky .side-nav:hover .progress {
  opacity: 0;
  transform: scaleY(0.2) translate3d(0, 30px, 0);
}
.side-sticky-wrap .sticky .side-nav:hover .total {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
.side-sticky-wrap .sticky .side-nav.dark a,
.side-sticky-wrap .sticky .side-nav.dark .total {
  color: #000;
}
.side-sticky-wrap .sticky .side-nav.dark .progress {
  background: rgba(0, 0, 0, 0.45);
}
.side-sticky-wrap .sticky .side-nav.dark .progress:before {
  background: #000;
}
.side-sticky-wrap .sticky .side-nav ul {
  position: relative;
}
.side-sticky-wrap .sticky .side-nav ul li {
  position: absolute;
  right: 0;
  top: 0;
}
.side-sticky-wrap .sticky .side-nav ul a {
  padding: 10px;
  display: inline-flex;
  opacity: 0.3;
  transition: color 0.3s ease-out, opacity 0.2s ease-out, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.side-sticky-wrap .sticky .side-nav ul a span {
  font-weight: 600;
  padding-left: 24px;
  order: 1;
}
.side-sticky-wrap .sticky .side-nav ul a.active {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .side-sticky-wrap .sticky .side-nav:hover ul:hover a:hover {
    opacity: 1;
  }
  .side-sticky-wrap .sticky .side-nav:hover ul:hover a:not(:hover) {
    opacity: 0.3;
  }
}
.side-sticky-wrap .sticky .side-nav .progress,
.side-sticky-wrap .sticky .side-nav .progress:before {
  transition: background 0.3s ease-out, opacity 0.3s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.side-sticky-wrap .sticky .side-nav .total {
  transition: color 0.3s ease-out, opacity 0.3s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.side-sticky-wrap .sticky .side-nav .progress {
  position: absolute;
  right: 19px;
  top: 42px;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  pointer-events: none;
  transform-origin: 0 100%;
}
.side-sticky-wrap .sticky .side-nav .progress:before {
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  height: 80px;
  content: "";
  background: #fff;
  transform: translate3d(0, calc(var(--progress) * 80px), 0);
}
.side-sticky-wrap .sticky .side-nav .total {
  position: absolute;
  right: 10px;
  top: 138px;
  font-weight: 600;
  pointer-events: none;
}
.side-sticky-wrap .sticky .network-button {
  position: static;
  transform: translateY(-24px);
  pointer-events: auto;
}
@media (max-width: 1440px) {
  .side-sticky-wrap {
    display: none;
  }
}

/* ===== footer ===== */
#footer .copyright {
  width: 37.65%;
  max-width: 724px;
  font-size: 12px;
  font-weight: 300;
  color: #666;
  text-indent: -17px;
  line-height: 14px;
  margin: 0 0 40px auto;
  padding: 0 17px;
  box-sizing: border-box;
}
#footer .copyright em {
  font-family: "Hanwha";
  -font-size: 11px;
  font-weight: 500;
}
#footer .copyright em,
#footer .copyright span {
  white-space: nowrap;
}
@media (max-width: 767px) {
  #footer .copyright {
    width: auto;
    font-size: 10px;
    white-space: nowrap;
    text-indent: 0;
    line-height: 12px;
    margin: -3px 0 12px;
    padding: 0 16px 0 23px;
    transform-origin: 0 100%;
    transform: scale(0.7);
  }
}

/* ===== 기타 유틸 ===== */
.page-cover {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  z-index: 98;
}
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
