footer {
  background: #09090A;
}
.footer-up-pc {
  display: flex;
  justify-content: space-between;
  padding: 64px 0 42px 0;
}
.footer-up-mobile {
  display: none;
}
.footer-up-left .footer-desc {
  color: #B9B9B9;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-up-left .footer-contact {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-up-left .footer-contact a {
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.footer-up-left .footer-contact a.instagram {
  background-image: url('../../img/common/footer/footer-instagram-normal.svg');
}
.footer-up-left .footer-contact a.instagram:hover {
  background-image: url('../../img/common/footer/footer-instagram-hover.svg');
}
.footer-up-left .footer-contact a.youtube {
  background-image: url('../../img/common/footer/footer-youtube-normal.svg');
}
.footer-up-left .footer-contact a.youtube:hover {
  background-image: url('../../img/common/footer/footer-youtube-hover.svg');
}
.footer-up-left .footer-contact a.x {
  background-image: url('../../img/common/footer/footer-x-normal.svg');
}
.footer-up-left .footer-contact a.x:hover {
  background-image: url('../../img/common/footer/footer-x-hover.svg');
}
.footer-up-left .footer-contact a.tiktok {
  background-image: url('../../img/common/footer/footer-tiktok-normal.svg');
}
.footer-up-left .footer-contact a.tiktok:hover {
  background-image: url('../../img/common/footer/footer-tiktok-hover.svg');
}
.footer-up-left .language-change {
  position: relative;
  width: 105px;
}
.footer-up-left .language-change .language-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 106px;
  padding: 6px 8px;
  background: #1A1A1C;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-up-left .language-change .language-selector .current-language {
  color: #B9B9B9;
  font-size: 14px;
  line-height: 1.6;
}
.footer-up-left .language-change .language-selector .arrow {
  color: #B9B9B9;
  font-size: 5px;
  transition: transform 0.3s ease;
}
.footer-up-left .language-change .language-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin-bottom: 8px;
  background: #1A1A1C;
  border-radius: 3px;
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-up-left .language-change .language-list li {
  padding: 8px 12px;
  color: #B9B9B9;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer-up-left .language-change .language-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  background: linear-gradient(270deg, #AB4FFF 0%, #FF4DD9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-up-left .language-change.active .language-selector .arrow {
  transform: rotate(180deg);
}
.footer-up-left .language-change.active .language-list {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.footer-up-right {
  display: flex;
  gap: 78px;
}
.footer-up-right .footer-small-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-up-right ul {
  color: #B9B9B9;
  font-size: 14px;
  line-height: 1.6;
}
.footer-up-right ul li {
  margin-bottom: 8px;
}
.footer-up-right ul li:last-child {
  margin-bottom: 0;
}
.footer-up-right ul li:hover {
  background: linear-gradient(270deg, #AB4FFF 0%, #FF4DD9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-down {
  padding: 16px 0 24px 0;
  border-top: 1px solid #515151;
  color: #6C6C6C;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .footer-up-right {
    gap: 58px;
  }
}
@media (max-width: 1000px) {
  .footer-up-right {
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .footer-up-pc {
    display: none;
  }
  .footer-up-mobile {
    display: block;
  }
  .footer-up-mobile-top {
    padding-top: 30px;
  }
  .footer-up-mobile-top .footer-logo-mobile {
    max-width: 128px;
    margin-bottom: 6px;
  }
  .footer-up-mobile-top .footer-logo-mobile img {
    width: 100%;
  }
  .footer-up-mobile-top .footer-desc-mobile {
    color: #B9B9B9;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .footer-up-mobile-top .footer-contact-mobile {
    display: flex;
    gap: 12px;
  }
  .footer-up-mobile-top .footer-contact-mobile a {
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .footer-up-mobile-top .footer-contact-mobile a.instagram {
    background-image: url('../../img/common/footer/footer-instagram-normal.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.instagram:active {
    background-image: url('../../img/common/footer/footer-instagram-hover.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.youtube {
    background-image: url('../../img/common/footer/footer-youtube-normal.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.youtube:active {
    background-image: url('../../img/common/footer/footer-youtube-hover.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.x {
    background-image: url('../../img/common/footer/footer-x-normal.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.x:active {
    background-image: url('../../img/common/footer/footer-x-hover.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.tiktok {
    background-image: url('../../img/common/footer/footer-tiktok-normal.svg');
  }
  .footer-up-mobile-top .footer-contact-mobile a.tiktok:active {
    background-image: url('../../img/common/footer/footer-tiktok-hover.svg');
  }
  .mobile-list {
    padding: 22px 16px 22px 10px;
    border-bottom: 1px solid #f1f1f184;
  }
  .mobile-list-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-list-text .mobile-title {
    color: #FFF;
    font-size: 16px;
  }
  .mobile-list-text .footer-arrow {
    color: #FFF;
    font-size: 16px;
    font-family: "iconfont";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(90deg);
    transition: transform 0.18s ease, color 0.18s ease;
  }
  .list-detail {
    display: none;
    margin-top: 14px;
    margin-left: 14px;
    color: #B9B9B9;
    font-size: 14px;
    line-height: 1.6;
  }
  .list-detail li {
    margin-bottom: 8px;
  }
  .list-detail li:last-child {
    margin-bottom: 0;
  }
  .list-detail a:active {
    background: linear-gradient(270deg, #AB4FFF 0%, #FF4DD9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-list.active .footer-arrow {
    transform: rotate(-90deg);
  }
  .footer-down {
    border-top: none;
    padding: 20px 0 22px 10px;
    text-align: left;
    font-size: 12px;
  }
}
