* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  cursor: none; 
}
@font-face {
    font-family: 'InkLipquid';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2208-01/InkLipquid.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #000;
    margin: 0;   
     /* 화면 Fade-in 효과 */
    opacity: 0;
    transition: opacity 0.3s ease-in;
    color: #fff;

}
/* 페이드인 완료 상태 */
body.fade-in {
  opacity: 1;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 120px;
width: 100%;
box-sizing: border-box;

}
/* --- 콘텐츠 영역 --- */
.container2 {
  width: 100%;
  max-width: 1440px;
  margin: 150px auto 40px auto;
}

.contents img {
  width: 100%;
}
img {
  width: 100%;
  display: block;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

.logo img {
  height: 70px;
  width: auto;
}

.p-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.p-menu>li {
  list-style: none;


}
.p-menu a {
  color: #fff;
  font-size:1.1rem;
}

/* 마우스 커서 효과 */
.trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen; /* 배경과 자연스럽게 섞이게 */
  opacity: 0;
  transform: translate(-50%, -50%);
  filter: blur(2px);
  animation: sparkle 1s ease-in-out infinite alternate ;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes sparkle {
  0% { opacity: 0.8; transform: scale(3) translate(-50%, -50%); }
  100% { opacity: 0.2; transform: scale(2) translate(-50%, -50%); }
}


.proto {
  margin-top: 20px;
  width: 100%;
  height: auto;
}



/* 푸터 영역 */
h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  line-height: 40px;
  margin-top: 100px;
}

footer a,
footer a:visited,
footer a:hover,
footer a:active {
  color: #fff;
  text-decoration: none;
}

footer p {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    line-height: 10px;
}


@media(max-width:1440px){
   .container {
    padding: 0 40px;
  }
  .container2 {
    padding: 0 40px;
  }
  .p-menu a{
    font-size: 1.1rem;
  }
  h4 {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 2rem;
}
footer p {
    font-size: 0.8rem;
    color: #fff;
    line-height: 0.4rem;
}
}
@media(max-width:1024px){
   .container {
    padding: 0 30px;
  }
  .container2 {
    padding: 0 30px;
  }
  .p-menu a{
    font-size: 1.1rem;
  }
  h4 {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 2rem;
}
footer p {
    font-size: 0.8rem;
    color: #fff;
    line-height: 0.4rem;
}
}
@media(max-width:768px){
  .container {
    padding: 0 25px;
  }
  .p-menu a{
    font-size: 1rem;
  } 
  .container2 {
    padding: 0 25px;
    margin-top: 120px ;
  }
   .logo img {
  height: 60px;
  width: auto;
}
  footer {
  margin: 0;
  padding: 0;
 
}
h4 {
  font-size: 0.9rem;
}
footer p {
  font-size: 0.8rem;
  line-height: 0.4rem;
}
}
@media(max-width:570px){
  .container {
    padding: 0 25px;
  }
  .container2 {
        padding: 0 25px;
        margin-top: 100px;
    }
     .logo img {
    height: 55px;
    width: auto;
  }
  .p-menu  {
    gap: 40px;
    }
  .p-menu a{
    font-size: 1rem;
  }

}
@media(max-width:440px){
  .container {
    padding: 0 25px;
  }
    .container2 {
        padding: 0 25px;
        margin-top: 100px;
    }
    .downbtn {
      font-size: 12px;
    }
    .p-menu  {
    gap: 30px;
    }
    .p-menu a{
    font-size: 0.8rem;
  }
    .proto {
      margin-top: 20px;
    }
    footer p {
      line-height: 15px;
    }
    .copy{
      margin-top: 0px;
    }
 h4 {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: left;
  margin-top: -40px;
}
footer p {
    font-size: 0.5rem;
    color: #fff;
    line-height: 0.8rem;
    text-align: left;
    margin-top: 5px;
}
  
}

@media(max-width:375px){
  .container {
    padding: 0 20px;
  }
    .container2 {
        padding: 0 20px;
        margin-top: 90px;
    }
    .logo img{
    height: 45px;
    width: auto;
    }
    .p-menu {
      gap: 30px;
    }
    .p-menu a {
      font-size: 0.7rem;

    }
    .downbtn {
      margin-top: 10px;
    }
   h4 {
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.1rem;
  text-align: left;
  margin-top: -40px;
}
footer p {
    font-size: 0.4rem;
    color: #fff;
    line-height: 0.7rem;
    text-align: left;
    margin-top: 5px;
}

}