body {
  cursor: none;
}

.text-hover {
  position: relative;
}

/* 호버 시 스타일 */
.text-hover:hover {
  color: #FDD001 !important;
}

/* 기본 상태에서 점 스타일 */
.text-hover::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FDD001;
  border-radius: 50%;
  top: -5px;
  right: -15px;
  opacity: 0; /* 기본적으로 투명 */
  transform: scale(0); /* 기본적으로 크기 0 */
  transition: opacity 0.3s ease, transform 0.3s ease; /* 부드러운 전환 */
}

/* 호버 시 동그란 점 애니메이션 */
.text-hover:hover::after {
  opacity: 1; /* 불투명 */
  transform: scale(1); /* 원래 크기로 */
}

.mouse-cursor {
  position: absolute;
  left: -500px;
  top: -500px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FDD001;
  user-select: none;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.8;
}

.mouse-cursor.scrolling {
  transition: left 0.1s ease-out, top 0.1s ease-out; /* 스크롤 시 부드럽게 */
}

#header {
    padding: 22px 0px;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0px;
    z-index: 10;
    border-bottom: 1px solid #b1b1b1;
}

.header-space {
  padding-top: 86px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 910px;
    margin: 0 auto;
    gap: 130px;
}

.header-container img {
    max-width: 270px;
    max-height: 40px;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 400;
}

.header-nav a.active {
  font-weight: bold;
  color: #FDD000;
}
#bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: 100%;
    background: #191919;
}

.mobile-bottom {
    display: none;
}

.bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.bottom-container2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bottom-box {
    display: flex;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}
.bottom-box a {
  color: #fff;
}

.bottom-box > p:nth-of-type(1) {
    width: 153px;
    font-weight: 500;
}

.bottom-box2 {
    display: flex;
    justify-content: space-between;
    color: #9a9a9a;
    font-size: 30px;
    font-weight: 700;
    gap: 24px;
}

.bottom-box2 a {
  color: #fff;
}

.divider-line {
    display: none;
    height: 1px;
    background-color: #c5c5c5; /* 원하는 색상 */
}

.bottom-line {
    display: none;
    height: 1px;
    background-color: #c5c5c5; /* 원하는 색상 */
}

.bottom-logo-box {
  text-align: center;
}

@media (max-width: 1919px) and (min-width: 1440px) {
    .header-container {
      max-width: 850px;
      gap: 100px;
    }
  
    .header-nav {
      font-size: 18px;
    }
  
    .bottom-box,
    .bottom-box2 {
      font-size: 20px;
    }
  
    .bottom-box > p:nth-of-type(1) {
      width: 140px;
    }
  }
  
  @media (max-width: 1439px) and (min-width: 1280px) {
    .header-container {
      max-width: 760px;
      gap: 80px;
    }
  
    .header-nav {
      font-size: 17px;
    }
  
    .bottom-box,
    .bottom-box2 {
      font-size: 20px;
    }
  
    .bottom-box > p:nth-of-type(1) {
      width: 130px;
    }
  }
  
  @media (max-width: 1279px) and (min-width: 1024px) {
    .header-container {
      max-width: 680px;
      gap: 60px;
    }

    .header-nav {
      font-size: 16px;
    }
  
    .bottom-box,
    .bottom-box2 {
      font-size: 16px;
    }
  
    .bottom-box > p:nth-of-type(1) {
      width: 120px;
    }
  }

  @media (max-width: 1024px)  {
    #header {
      border-bottom: 0;
    }
    .header-space {
      padding-top: 100px;
    }

    .header-container img {
      max-width: 120px;
      max-height: 40px;
    }
  }
  
  @media (max-width: 1023px) and (min-width: 768px) {
    #header {
        padding-top: 15px;
        padding-bottom: 0px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 100%;
    }

    .divider-line {
        display: block;
        width: 100%;
    }

    .bottom-line {
        display: block;
        width: 100%;
    }
  
    .header-nav {
      font-size: 15px;
      width: 100%;
      justify-content: space-around;
    }
  
    .bottom-box,
    .bottom-box2 {
      font-size: 15px;
      gap: 12px;
    }
  
    .bottom-box > p:nth-of-type(1) {
      width: auto;
    }
  }
  
  @media (max-width: 767px) {
    #header {
        padding-top: 15px;
        padding-bottom: 0px;
    }

    .header-container {
      flex-direction: column;
      gap: 15px;
    }

    .divider-line {
        display: block;
        width: 100%;
    }

    .bottom-line {
        display: block;
        width: 100%;
    }
  
    .header-nav {
      font-size: 14px;
      justify-content: space-around;
      width: 100%;
    }

    #bottom-bar {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .mobile-bottom {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #9a9a9a;
        font-weight: 700;
    }

    .bottom-container {
        gap: 10px;
    }

    .bottom-container2 {
        display: none;
    }
  
    .bottom-box {
        font-size: 12px;
        gap: 12px;
    }
  
    .bottom-box > p:nth-of-type(1) {
      width: auto;
    }

    .bottom-logo {
      width: 150px;
    }
  }
