@import url("https://fonts.cdnfonts.com/css/sweet-sans-pro");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul,
li {
  list-style-type: none;
}

.amstirpixel {
  font-family: "Amstirpixel", sans-serif !important;
}

.sweet-sans {
  font-family: "Sweet Sans Pro", sans-serif !important;
}

.poppins {
  font-family: "Poppins", sans-serif !important;
}

html,
body {
  height: auto;
  color: #fff;
  font-family: "Pretendard", sans-serif;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

/* header 소스 */
header {
  background-color: transparent;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 2.5rem;
  position: relative;
  top: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
  background-color: transparent;
}

.banner {
  background-color: #fff;
  color: #000;
  width: 100%;
  position: relative;
  top: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
}

.header.slide-up {
  top: -60px;
}

.banner.slide-up {
  top: -60px;
  opacity: 0;
}

.banner-inner {
  min-height: 60px;
  text-align: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
}

.banner-inner a {
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-inner a img {
  height: 20px;
  width: 20px;
  margin-left: 0.2rem;
}

.banner-close {
  float: right;
  background: none;
  border: none;
  color: #000;
  font-size: 17px;
  cursor: pointer;
}

.header-logo .ado_logo {
  display: none;
}

.header-logo .ado_logo_white {
  display: block;
}

.header-copy {
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
}

.header-menu {
  display: flex;
  gap: 160px;
  align-items: center;
}

.center-menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.right-menu {
  display: flex;
  gap: 50px;
  align-items: center;
}

.menu-btn {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu-btn img {
  vertical-align: middle;
  width: 20px;
}

.header.slide-up {
  top: -60px;
}

.banner.slide-up {
  top: -60px;
  opacity: 0;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
}

#wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

/* footer */
footer {
  background: #fff;
  padding: 20px 2.5rem;
  color: #000;
  font-size: 13px;
}

.footer {
  display: flex;
  flex-direction: column;
}

.footer_top {
  display: flex;
  gap: 130px;
  margin-bottom: 87px;
}

.footer_col {
  flex: 1 1 300px;
}

.footer_menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-family: "Poppins", sans-serif !important;
}

.footer_logo img {
  max-width: 120px;
}

.copyright {
  margin-top: 13px;
  letter-spacing: -0.3px;
}

.footer_col h4 {
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.footer_col p {
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.m_view {
  display: none;
}

.mobile-menu-btn {
  cursor: pointer;
}

.mobile-menu-overlay {
  display: flex;
  flex-direction: column;
  padding: 15px;
  height: 100%;
  width: 80%;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header .mobile-logo,
.mobile-menu-header .ado_logo {
  height: 28px;
}

.mobile-close-btn {
  font-size: 28px;
  color: #505050;
  cursor: pointer;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

.mobile-menu-link {
  font-size: 44px;
  font-weight: bold;
  letter-spacing: -0.17px;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.mobile-menu-link.active {
  color: #000;
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.mobile-menu-footer .icons a img {
  width: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .m_view {
    display: block;
  }

  .pc_view {
    display: none;
  }

  .banner-inner {
    min-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-inner a {
    font-size: 13px;
  }

  .banner-inner a img {
    height: 16px;
    width: 16px;
  }

  .header {
    padding: 16px 20px;
  }

  footer {
    padding: 20px;
    font-size: 11px;
  }

  .footer_top {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 83px;
  }

  .footer_col {
    flex: 1;
  }

  .footer_col h4 {
    margin-bottom: 0;
  }

  .header-logo .ado_logo_white {
    width: 85px;
  }

  .center-menu {
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .center-menu {
    gap: 20px;
  }
}

/* 쿠키 고지 팝업 공통 */
.cookie-notice {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  max-width: 940px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-content {
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  color: #000;
}

.cookie-content h3 {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-content p {
  font-size: 12px;
  line-height: 16px;
  word-break: keep-all;
}

.cookie-content a {
  color: #000;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}

.cookie-btn {
  padding: 18px 25px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn.accept {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.cookie-btn.reject {
  background: transparent;
  color: #222;
  border: 1px solid #000;
}

/* MO 전용 */
.cookie-mo {
  display: none;
}

.cookie-mo .cookie-content {
  flex-direction: column;
  padding: 15px;
}

.cookie-buttons-mo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cookie-buttons-mo .cookie-btn {
  width: 100%;
  padding: 15px;
}

/* 반응형 */
@media screen and (max-width: 1024px) {
  .cookie-pc {
    display: none;
  }
  .cookie-mo {
    display: block;
  }
}
