/* ========================================
   Global Styles
   ======================================== */
html {
  font-family: '42dotSansOTF', -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR',
    'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 18px;
  border: 2px solid #fff;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 1200px) {
  body {
    min-width: auto !important;
  }
}

/* Links */
a {
  background-color: transparent;
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:active,
a:hover {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: keep-all;
}

/* Buttons */
button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: inherit;
  font: inherit;
  color: inherit;
}

/* Icon Arrow Animation */
button .icon_arrow,
a .icon_arrow {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: none;
}

button .icon_arrow i,
a .icon_arrow i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.34s ease-in-out;
}

button .icon_arrow i:last-of-type,
a .icon_arrow i:last-of-type {
  transform: translate(-250%, -50%);
}

@media (min-width: 1201px) {
  button:hover .icon_arrow i,
  a:hover .icon_arrow i {
    transform: translate(150%, -50%);
  }

  button:hover .icon_arrow i:last-of-type,
  a:hover .icon_arrow i:last-of-type {
    transform: translate(-50%, -50%);
  }
}

/* Form Elements */
textarea,
input {
  font-family: '42dotSansOTF', -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR',
    'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    sans-serif;
  outline: none;
}

/* Images */
img {
  vertical-align: top;
}

/* ========================================
   Utility Classes
   ======================================== */
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.only_mo {
  display: none;
}

@media (max-width: 767px) {
  .only_mo {
    display: block;
  }
}

.only_pc {
  display: block;
}

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

.custom-cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor:before {
  display: block;
  content: 'More';
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1200px) {
  .custom-cursor {
    display: none;
  }
}

.scroll_lock,
.main_scroll_lock {
  overflow: hidden;
  height: 100%;
}

/* ========================================
   Layout Containers
   ======================================== */
#__next {
  height: 100%;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Logo Overlay */
.logo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
  color: #fff;
}
