@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #d8d8d8;
  color: #000000;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-family: 'Noto Sans KR', sans-serif;
  z-index: 10000;
}
.my-underline {  text-decoration: underline;}
.top-banner a {
  color: #000000;
  text-decoration: none;
  font-weight: 800;
}

.top-banner a:hover {
  text-decoration: underline;
}
body {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1.6;
    padding-top: 40px; /* 배너 높이만큼 */
  overflow-x: hidden;
}

.background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
 
  z-index: -1;
}

.background-layer2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: -2;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: transparent;
  padding: 0.9em 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(30px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 50px;
  background: linear-gradient(45deg, #00f5a0, #00d9f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(-20px);
  animation: logoFadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}
.flag {
  width: 20px;
background-size:cover;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 기본 네비게이션 - 데스크톱에서 항상 보임 */
.nav {
  display: block;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

.nav a {
  color: white;
  mix-blend-mode: difference;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00f5a0;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

/* 햄버거 버튼 기본은 숨김 */
.menu-toggle {
  display: none;
  color: white;
  flex-direction: column;
  cursor: pointer;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

/* 모바일에서 네비게이션 숨기고 토글 기능 */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
     color: #ffffff;
  }


  .nav {
    position: absolute;
    top: 70px;
     color: #ffffff;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    padding: 1em;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    width: 180px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav.open {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
    height: auto;
  }

  .nav a {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 600;
  }
  .nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 1em;
  }

.hero h2 {
  font-size: 1em;
}

.hero p {

  font-size: 3em;
  color: #dadada;
  margin-bottom: 2em;
}
.hero {
  height: 200px;
}

.hero12 h2 {
  font-size: 0.5em;
}

.hero12 p {

  font-size: 1em;
  color: #dadada;
  margin-bottom: 2em;
}
.hero12 {
  height: 200px;
}
}


/* Hero Section */
.hero {
   background: url(../images/33.jpg) no-repeat center center;
  background-size: cover;
  height: 500px;
  background-size: cover;
  text-align: center;
  padding: 7em 1em;
}

.hero h2 {
  font-size: 6em;
  font-weight: 900;
  font-family: "Archivo Black", sans-serif;
  color: #ffffff;
  margin-bottom: -0.5em;
}

.hero p {
 font-family: "Archivo Black", sans-serif;
  font-size: 3em;
  color: #dadada;
  margin-bottom: 2em;
}
.hero h2, .hero p, .btn-modern {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextFadeIn 1.5s ease-out forwards;
}

.hero h2 {
  animation-delay: 1s;
}

.hero p {
  animation-delay: 1.3s;
}

.hero .btn-modern {
  animation-delay: 1.6s;
}

@keyframes heroTextFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-modern {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #000;
  padding: 1em 5em;
  font-weight: bold;
  border: none;
  border-radius: 10px 0px 10px 0px;
   font-family: "Archivo Black", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 245, 160, 0.5);
}

.btn-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 245, 160, 0.7);
}
.btn-modern12 {
  background: linear-gradient(135deg, #cecece, #00d9f5);
  color: #000;
  padding: 1em 5em;
  font-weight: bold;
  border: none;
  border-radius: 10px 0px 10px 0px;
   font-family: "Archivo Black", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 245, 160, 0.5);
}

.btn-modern12:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 245, 160, 0.7);
}
/* Hero Section */
.hero12 {
   background: url(../images/b22.png) no-repeat center center;
  background-size: cover;
  height: 400px;
  background-size: cover;
  text-align: center;
  padding: 7em 1em;
}

.hero12 h2 {
  font-size: 3em;
  font-weight: 900;
  font-family: "Archivo Black", sans-serif;
  color: #000000;
  margin-bottom: -0.3em;
}

.hero12 p {
 font-family: "Archivo Black", sans-serif;
  font-size: 1em;
  color: #000000;
  margin-bottom: 2em;
}
.hero12 h2, .hero p, .btn-modern {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextFadeIn 1.5s ease-out forwards;
}

.hero12 h2 {
  animation-delay: 1s;
}

.hero12 p {
  animation-delay: 1.3s;
}

.hero12 .btn-modern {
  animation-delay: 1.6s;
}
.limited-edition {
  position: relative;
  display: inline-block;
}
.limited-img {
  width: 400px;
  border-radius: 1px;
}
.limited-p {
font-size: 0.6em;
}
.countdown {
  position: absolute;
  font-family: "Archivo Black", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;}
/* Features Section */
.features {
  padding: 1em 0;
background-color: #000;
}

.features-container {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-box {
  flex: 1 1 30%;
  background: rgb(0, 0, 0);
  border-radius: 10px 0px 10px 0px;
  padding: 2em;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
  text-align: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: featureFadeIn 0.8s ease-out forwards;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box:nth-child(1) {
  animation-delay: 0.3s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.6s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes featureFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.feature-box h3 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  color: #ffffff;
}

.feature-box p {
  color: #bbb;
  font-size: 0.95em;
}

.feature-box:hover {
  transform: translateY(-6px);
}

/* Footer */
.footer {
  background-color: #000;
  color: #777;
  text-align: center;
  padding: 2em 0;
  font-size: 0.9em;
   font-family: 'Noto Sans KR', sans-serif;
  margin-top: 4em;
}

@media (max-width: 768px) {
    .menu-toggle {
    display: flex;
  }
  .sales-wrapper {
    padding: 2em;
    gap: 0em;
  }

  .sales-card {
    padding: 3em;
    width: 100%;
    max-width: 100vw; /* 모바일에서 뷰포트 기준 너비 제한 */
  }

  .sales-card h3 {
    font-size: 1em;
  }
 

  .nav ul {
    flex-direction: row;
  }
  .sales-card p,
  .sales-card .price {
    font-size: 0.9em;
  }
  .hero h2 {
    font-size: 3.5em;
  }

  .hero p {
    font-size: 3em;
  }

  .partners2 h2,
  .partners2 p {
    font-size: 1.5em;
  }
  .sales-card img {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

}




.partners2 {
  padding: 3em 0;
  background-color: #000;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.text-cutout {
  mix-blend-mode: destination-out;
  color: white;
  position: relative;
  z-index: 1;
}

.partners2 h2,
.partners2 p {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: 6em;
  margin: 0;
  line-height: 1;
}
.partners {
  padding: 3em 0;
  overflow: hidden;
}

.partners-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: fit-content;
  animation: scrollLoop 30s linear infinite;
}

.partners-track img {
  height: 100px;
  margin: 0 2em;
  opacity: 0.7;
  transition: opacity 0.3s;
  object-fit: contain;
}

.partners-track img:hover {
  opacity: 1;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sales {
background-color: #000;
  padding: 3em 0;
}

.sales-wrapper {
  display: flex;
  overflow-x: scroll;
  gap: 0em;
  padding: 5em;
  scroll-behavior: smooth;
}

.sales-card {
  border-radius: 8px;
  width: 100%; /* 너비를 부모 기준으로 */
  max-width: 750px; /* 최대 너비 제한 */
  text-align: center;
  padding: 5em;
  transition: transform 0.3s ease;
  flex: 0 0 auto; /* 가로 스크롤이 되도록 고정 크기 카드 유지 */
  box-sizing: border-box;
}

.sales-card img {
  width: 400px;
  height: auto;
  border-radius: 8px;
}

.sales-card h3 {
  font-size: 1.2em;
  margin-top: 1em;
}

.sales-card p {
  font-size: 1em;
  color: #b1b1b1;
  margin: 0.5em 0;
}

.sales-card .price {
  font-size: 1.5em;
  font-weight: bold;
  color: #f3f3f3;
  margin-top: 1em;
}

.sales-card:hover {
  transform: translateY(-10px);
}

.sales-wrapper::-webkit-scrollbar {
  height: 8px;
}

.sales-wrapper::-webkit-scrollbar-thumb {
  background: #757575;
  border-radius: 4px;
}

.sales-wrapper::-webkit-scrollbar-track {
  background: #000000;
}

.hero22 {
  background-color: #000;
  height: 70px;
  background-size: cover;
  text-align: center;
  padding: 7em 1em;
}

.hero22 h2 {
  font-size: 3em;
  font-weight: 900;
 
  color: #ffffff;
  margin-bottom: -0.3em;
}

.hero22 p {

  font-size: 3em;
  color: #dadada;
  margin-bottom: 2em;
}
.hero2 h2, .hero2 p, .btn-modern {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextFadeIn 1.5s ease-out forwards;
}

