/* Basic reset */
* {
    box-sizing: borbit-svgder-box;
    margin: 0;
    padding: 0
}


/* 모달/메뉴 열릴 때 바디 스크롤 막기 */
body.no-scroll {
  overflow: hidden;
  
}

body {
  font-family: Pretendard, Poppins, Notos, system-ui, -apple-system,
               "Helvetica Neue", "Segoe UI", Roboto;
  background: #000;
  position: relative;
  overflow-x: hidden;
}

/* 기본 (PC / 태블릿) — 현재 유지 */
/* 공통 배경 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  /* 🎯 세로 그라데이션 */
  background: linear-gradient(
    180deg,
    var(--c1) 0%,
    var(--c2) 22%,
    var(--c3) 42%,
    var(--mid) 60%,
    #020406 100% /* 하단 거의 블랙 고정 */
  );

  animation: skyShift 6s ease-in-out infinite;
  animation-duration: 8s;
  animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  filter: saturate(115%) contrast(105%);

}

/* 🔥 모바일 전용 */
@media (max-width: 1000px) {
  body::before {
    animation-duration: 3.2s;
  }
}

/* 🎨 색상 & 중간값 애니메이션 */
@keyframes skyShift {
  0% {
    --c1: rgb(45, 120, 210);
    --c2: rgb(28, 95, 175);
    --c3: rgb(18, 70, 140);
    --mid: rgb(10, 30, 55);
  }

  33% {
    --c1: rgb(30, 145, 225);
    --c2: rgb(22, 110, 190);
    --c3: rgb(15, 85, 155);
    --mid: rgb(12, 35, 65);
  }

  66% {
    --c1: rgb(20, 110, 200);
    --c2: rgb(18, 85, 165);
    --c3: rgb(12, 60, 120);
    --mid: rgb(8, 25, 45);
  }

  100% {
    --c1: rgb(45, 120, 210);
    --c2: rgb(28, 95, 175);
    --c3: rgb(18, 70, 140);
    --mid: rgb(10, 30, 55);
  }
}





/********************************************
 * 🔥 MOBILE HEADER
 ********************************************/
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    padding: 0 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(68, 232, 250, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255, 255, 255);

    z-index: 9999;
}

.menu-toggle {
    font-size: 30px;
    font-weight: 700;
    background: transparent;
    border: none;
    color: rgb(162, 255, 0);
    padding: 6px;
    cursor: pointer;
    z-index: 10001;
}

.menu-toggle:active {
    transform: scale(0.9);
}

.shop-btn {
  color: rgb(162, 255, 0);
}


.mobile-header .logo {
    color: rgb(255, 255, 255);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    /* 🔥 텍스트 그림자 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}





/********************************************
 * 🔥 MOBILE NAV (SLIDING MENU)
 ********************************************/
.mobile-menu {
    position: fixed;
    top: 58px;
    left: 0;
    width: 78%;
    height: calc(100% - 58px);

    background: rgba(17, 24, 39, 0.9); /* Dark + transparent */
    backdrop-filter: blur(12px);

    padding: 28px 22px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.4);

    transform: translateX(-100%);
    transition: transform 0.28s ease-out, opacity 0.25s ease;

    opacity: 0;
    pointer-events: none;
    z-index: 9998;
}

/* 메뉴 열릴 때 */
body.menu-open .mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}


/********************************************
 * 🔥 MENU HEADER 영역
 ********************************************/
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.menu-header h2 {
    color: rgb(0, 170, 40);
    font-size: 1.2rem;
    font-weight: 800;
}

/******************************************************/

.menu-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-title .arrow-down {
    width: 16px;
    height: 16px;
}


/******************************************************/

/* 메뉴 헤더 전체 */
.mobile-menu .menu-header {
    position: relative;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 양 끝 배치 */
}

/* MENU + 화살표 */
.mobile-menu .menu-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #00b919;
}

/* 닫기 버튼 */
.mobile-menu .close-btn {
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 1.6rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}


/*******************************************************/

.close-btn {
    font-size: 30px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    z-index: 10002;
}

.close-btn:active {
    transform: scale(0.9);
}


/********************************************
 * 🔥 MENU ITEMS
 ********************************************/
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 18px;
}

.mobile-menu ul li a {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.3px;
    font-family: 'Inter', sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;

    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu ul li a:hover {
    color: #d9ff00;
    transform: translateX(4px);
}


/********************************************
 * 🔥 BODY OVERLAY 효과 (선택)
 ********************************************/
body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 9990;
}




/* Main ****************************************************************************************/
.mobile-main-content {
    padding: 80px 16px 16px;
}

.hero-section {
   position: relative;
    width: 100%;
    height: 320px; /* 필요 시 조정 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 텍스트를 아래로 */
    align-items: center;
    border-radius: 8px;

    /* 🔹 배경 이미지 */
    background-image: url('./england.png'); /* 원하시는 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 🔹 텍스트가 더 잘 보이도록 살짝 어둡게 */
    /* 필요 없으면 제거 가능 */
    /* overlay 넣으려면 아래 4줄 주석 제거 */
    /* 
    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.25);
        z-index: 1;
    } 
    */
}

/* 🔹 어둡게 처리하는 Overlay */
.hero-section::before {
     border-radius: 8px;
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* 🔥 어둡기 조절 부분 */
    z-index: 1;
}

/************************** FROM PRO HANDS.FOR FUTURE PROS.*****************/

.hero-section h1 {
    position: relative;
    z-index: 2; /* 🔹 텍스트를 이미지 위로 */
    /* 🔹 전용 서체 지정 (원하는 폰트 적으세요) */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 2.0rem;
    font-weight: 800;
    text-align: center;
}

.hero-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}



/************************************영국 PGA 프로 스튜어트 스미스의 브랜드*********************************************/
.hero-section p {
    position: relative;
    z-index: 2; /* 🔹 텍스트를 이미지 위로 */
    /* 🔹 전용 서체 지정 (원하는 폰트 적으세요) */
   font-family: 'Noto Sans KR', sans-serif;
   font-weight: 500;
    color: white; /* 배경 위에서 가장 선명 */
    text-align: center;
    letter-spacing: -0.5px;   /* 자연스럽게 좁아짐 */
    margin-bottom: 24px;
}

/*****************************************************************/




/******************************************************************/

/* Features */
.features h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-list {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
}

.card {
    flex-shrink: 0;
    width: 160px;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.card .title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.card .price {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #059669;
}
.card .price.gray {
    color: #6b7280;
}

/*****************************************************************/

.middle_img img {
    margin-top: 20px;
    width: 100%;
    height: auto;
    display: block;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.middle_img img.active {
    opacity: 1;
    transform: translateY(0);
}


/* Company Box ************************************/



.company-box {
    background: rgb(187, 255, 0);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*****************************SMITHWORKS***********************/
.company-box h3 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: green;
}

.company-box p {
    
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
}

.spacer {
    height: 20vh;
}
.bottom-text {
    text-align: center;
    color: #6b7280;
}

/* Footer */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: white;
    border-top: 1px solid #ddd;
    z-index: 10000;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: 0.2s;
}
.nav-item.active {
    opacity: 1;
}

.bottom-nav a:visited,
.bottom-nav a:hover,
.bottom-nav a:active {
  text-decoration: none;
}


/***********************************************************************************************/




/**********************************************************************************************/

.bg001 {
    position: relative;
    width: 100%;
    height: 50vh; /* 필요에 따라 변경 */
    overflow: hidden;
    border-radius: 8px;
}

.bg001 .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;  /* 영상이 영역을 꽉 채움 */
    z-index: -1;        /* 뒤로 보내기 */
}


/* 🔹 개별 여백 설정 (원하는 값으로 조정 가능) */
.bg001 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.bg001 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-right: 20px;
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    letter-spacing: -0.3px;
    font-size: 1rem;
}

/**********************************************************************/

.scroll-icon {
  position: fixed;
  right: 2vw;
  bottom: 70px;
  /* 화면 하단으로부터 20px */
  transform: translateX(-50%);
  /* 가로 가운데 정렬 */

  width: 30px;
  /* 가로 60px */
  height: 50px;
  /* 세로 100px */
  border: 2px solid #fff;
  /* 1px 흰색 테두리 */
  border-radius: 15px;
  /* 모서리 둥글게 (원하시면 숫자 조정) */
  display: flex;
  align-items: center;
  /* 수직 중앙 기준(기본 dot 시작 위치) */
  justify-content: center;
  background: #ffffff32;
  box-sizing: border-box;
  pointer-events: none;
  /* 클릭 방해하지 않음 */
  z-index: 9999;
}

/* 내부 컨테이너: 위치기준 및 overflow 처리 */
.scroll-icon .frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 이동하는 작은 원 */
.scroll-icon .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  /* 세로 절반 위치에서 시작 */
  transform: translate(-50%, -50%);
  width: 8px;
  /* 원 크기 (원하면 조절) */
  height: 8px;
  border-radius: 50%;
  background: #fff;
  /* 원 색상 (테두리와 동일) */
  box-shadow: none;
  opacity: 1;
  /* 애니메이션: 위로 이동 후 다시 원래 위치로 돌아오는 루프 */
  animation: moveUp 1.6s cubic-bezier(.2, .9, .2, 1) infinite;
}

/* 애니메이션 키프레임: 0% 시작 -> 60% 위 이동 -> 100% 원위치 (투명해짐) */
@keyframes moveUp {
  0% {
    transform: translate(-50%, 0);
    /* 시작: 중앙(절반) */
    opacity: 1;
  }

  60% {
    transform: translate(-50%, -23px);
    /* 위쪽으로만 이동 (값 조정 가능) */
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    /* 다시 원위치로 */
    opacity: 0;
    /* 살짝 숨기고 재시작 */
  }
}

/* 사용자의 '감속모션(감소모션)' 선호를 존중 */
@media (prefers-reduced-motion: reduce) {
  .scroll-icon .dot {
    animation: none;
    opacity: 1;
  }
}

/*****************************************************************/

.img4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px; /* 간격 조금 넓게 */
    padding-left: 4vw;
    padding-right: 4vw;
    scroll-behavior: smooth;
}

.img4 img {
    flex: 0 0 30%; /* 기존 50% → 40% 로 축소 */
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    scroll-snap-align: start;
}

.img4::-webkit-scrollbar {
    display: none;
}

/***********************************************************************/

.bg002 {
    position: relative;
    width: 100%;
    height: 50vh; /* 필요에 따라 변경 */
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;   /* ⭐ 반드시 추가해야 영상이 보임 */
}

.bg002 .bg-video2 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;  /* 영상이 영역을 꽉 채움 */
    z-index: -1;        /* 뒤로 보내기 */
}


/* 🔹 개별 여백 설정 (원하는 값으로 조정 가능) */
.bg002 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.bg002 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    letter-spacing: -0.3px;
    font-size: 1rem;
}

/***************************************************************/

.img_over {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow: hidden;
}

.img_over .img_box {
    position: relative;
    width: 50%; /* 가로 2개 */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img_over .img_box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* 오버레이 */
.img_over .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* 어둡게 */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.35s ease;
}

.img_over .overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.3px;
}

/* 호버 시 효과 */
.img_over .img_box:hover img {
    transform: scale(1.06);
    opacity: 0.85;
}

.img_over .img_box:hover .overlay {
    opacity: 1;
}

/********************************************************/

.tech_pop {
    width: 100%;
    text-align: center;
    margin: 30px 0;
    z-index: 100;
}

.tech-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;

    color: white;
    background: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover 효과 */
.tech-btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
}

/********************************************************/

#spin-hero h1 {
    color: #ff0062;
}

#spin-hero P {
    color: #ffffff;
   
}

/********************************************************/

/* 🔹 공통 버튼 스타일 */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #16a34a; /* green-600 */
    color: white;
    font-size: 2rem; /* text-3xl */
    padding: 12px 16px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 40;
    border-radius: 0; /* 라운드 제거 */
    user-select: none;
}

.slide-btn:hover {
    background: #15803d; /* green-700 */
}

/* 🔹 좌측 버튼 */
.slide-btn-left {
    left: 0;
    z-index: 100;
}

/* 🔹 우측 버튼 */
.slide-btn-right {
    right: 0;
    z-index: 100;
}

/*******************************************************/

/* 요소 기본 스타일 */
.video_choice00 {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;

    background-image: url('./kings_video_choice.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;

    /* 애니메이션 초기 상태 (숨겨짐) */
    opacity: 0;
    transform: scale(0.85);
}

/* 화면에 보일 때 활성화 */
.video_choice00.active {
    animation: fadeScaleUp 0.9s ease-out forwards;
}

/* 등장 애니메이션 */
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.video_choice00 {
    pointer-events: none !important;
}


/***********************************************************/

.video_choice01 {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 1920x1080 = 16:9 비율 */
    position: relative;

    background-image: url('./IMG_8386_png.png'); /* ✔ 여기만 이미지 경로로 변경 */
    background-size: cover;      /* 화면 전체에 꽉 채우기 */
    background-position: center; /* 항상 중앙 기준 */
    background-repeat: no-repeat;
    border-radius: 8px;         /* 선택: 모서리 부드럽게 */
    overflow: hidden;
}

/***********************************************************/

.video_choice02 {
    width: 100%;
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    gap: 2vw; /* 이미지 간격 */
    padding: 40px 0; /* 위/아래 여백 (조절 가능) */
}

.video_choice02 img {
    width: 30%;              /* 3개를 정확히 가로로 배치 */
    height: auto;
    border-radius: 8px;     /* 라운드 처리 (선택) */
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;

}

/* IntersectionObserver가 붙을 때 활성화 */
.video_choice02.active img {
    opacity: 1;
    transform: translateY(0);
}

/* 조금씩 딜레이 추가 (더 세련됨) */
.video_choice02 img:nth-child(1) { transition-delay: 0.0s; }
.video_choice02 img:nth-child(2) { transition-delay: 0.15s; }
.video_choice02 img:nth-child(3) { transition-delay: 0.3s; }


/*********************************************************/

.video_choice {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.video-list {
    width: 100%;
    max-width: 95vw;
    display: flex;
    justify-content: center;
    gap: 3vw;
}

/* 썸네일 컨테이너 */
.video-wrap {
    position: relative;
    flex: 1;
    aspect-ratio: 9 / 16;
    cursor: pointer;
}

/* 썸네일 이미지 */
.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}



/* 팝업 */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.video-popup video {
    width: 94%;
    max-height: 88vh;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    top: 28px;
    right: 25px;
    font-size: 34px;
    color: white;
    cursor: pointer;
}



/*******************************************************/

.caption001 {
    color: #15803d;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: 600;

    /* 🔥 반응형 폰트 (모바일 최적화) */
    font-size: clamp(1rem, 2.5vw, 1.4rem);

    /* 🔥 위아래 패딩 20px */
    padding-top: 20px;
    padding-bottom: 20px;
}

.caption002 {
    color: #000000;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: 600;

    /* 🔥 반응형 폰트 (모바일 최적화) */
    font-size: clamp(1rem, 2.5vw, 1.4rem);

    /* 🔥 위아래 패딩 20px */
   
    padding-bottom: 20px;
}


/******************************************************/

/* 요소 기본 스타일 */
.video_choice03 {
    width: 100%;
    height: 60vh;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;

    background-image: url('./e.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;
}

.video_choice03 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.video_choice03 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    letter-spacing: -0.3px;
    font-size: 1rem;
}
/************************************************/


/* 초기 상태: 아래쪽에 있고 투명 */
.logo-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 화면에 등장했을 때 적용될 상태 */
.logo-anim.active {
    opacity: 1;
    transform: translateY(0);
}

/************************************************************/

/* ⭐ 가로 100px, 높이 2px 정도의 밝은 직사각형 */
.moving-line {
  width: 100px;
  height: 2px;
  background: rgba(183, 255, 0, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

.moving-line2 {
  width: 100px;
  height: 2px;
  background: rgba(255, 123, 0, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

.moving-line3 {
  width: 100px;
  height: 2px;
  background: rgba(255, 0, 119, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

/* ⭐ 좌 → 우 → 다시 좌로 무한 반복 */
@keyframes slideLine {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}

/********************************************************************/
/* 컨테이너: 가장자리 페이드 + 오버플로우 숨김 */
.marquee-wrap {   
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* 트랙: 수평 행으로 흘려보내기 */
.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

/* 마우스/터치 올렸을 때 멈춤 */
.marquee:hover { animation-play-state: paused; }

/* 애니메이션 키프레임 */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 트랙을 절반만큼 왼쪽으로 */
}

/* 모션 최소화 환경에서 정지 */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

/*************************************************************************/

.product-strip { padding: 24px 16px; }

.bottom_putter{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 기본 3열 */
  gap: 12px;
}

/* 이미지 높이 통일(크롭) */
.bottom_putter .thumb{
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /* 필요 비율로 변경 가능: 4/3, 1/1, 16/9 등 */
  aspect-ratio: 3 / 4;
  background: #0f0f0f0d;
}
.bottom_putter img{
  width: 100%; height: 100%;
  object-fit: cover;            /* 비율 유지 + 크롭 */
  display: block;
}

/* 반응형: 화면이 좁아질수록 2열 → 1열 */
@media (max-width: 992px){
  .bottom_putter{ grid-template-columns: repeat(3, 1fr); } /* 필요 시 유지 */
}

/*************************************************************************/
/* 색상은 필요에 맞게 조정 */
:root { --sep-color: #ff64c1; } /* 진한 그린(emerald-800 느낌) */


.mid-section{
  min-height: 10vh;                 /* 페이지 중간 영역(원하면 100vh) */
  display: flex;
  align-items: center;               /* 수직 가운데 */
  justify-content: center;           /* 수평 가운데 */
  padding: 40px 16px;
}

.v-sep{
  width: 2px;
  height: 60px;                      /* 요구사항: 80px */
  background: var(--sep-color);
  border-radius: 2px;
  transform-origin: center bottom;
  animation: vGrow 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--sep-color) 85%, transparent 15%),
              0 6px 16px rgba(0,0,0,.15);
}

/* 줄었다가(0.6배) 늘었다가(1배) 반복 */
@keyframes vGrow{
  0%   { transform: scaleY(0.4); opacity: .5; }
  50%  { transform: scaleY(1);   opacity: 1;  }
  100% { transform: scaleY(0.4); opacity: .5; }
}

/* 접근성: 모션 최소화 환경에서 정지 */
@media (prefers-reduced-motion: reduce){
  .v-sep{ animation: none; }
}


/************************************************************************/
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 배경 꽉 채우기 */
  z-index: -3;
  /* 가장 뒤로 */
  opacity: 1;
  /* 투명도 조절 가능 */
}

/* multi-layer background layers */
.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  z-index: 1;
  /* 🔹 content 아래 */
}

/* upper overlay layer for tint/glass */
.bg-layer.overlay {
  mix-blend-mode: overlay;
  opacity: 0.95;
  filter: contrast(1.05) saturate(1.05);
  z-index: 2;
}

@media (max-width:1024px) {
  .bg-layer, .bg-layer.overlay {
    display:none !important;
  }
}

/* === 카드 컨테이너 === */
/* =========================================================
   GLOBAL SAFE SETTINGS
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/* =========================================================
   FEATURE CARDS GRID
========================================================= */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  width: 100%;
  margin: 4vh auto 0;
}



/* =========================================================
   CARD FRAME (container)
========================================================= */
.feature-cards .card {
  position: relative;         /* 오버레이 기준 */
  width: 100%;
  aspect-ratio: 7 / 10;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  z-index: 300;
}



/* =========================================================
   CARD IMAGE LAYER
   → transform/blur/brightness는 여기만 적용
========================================================= */
.card-img {
  position: absolute;
  inset: 0;                   /* 이미지가 카드 전체 채움 */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: transform 0.45s ease, filter 0.45s ease;
  transform-origin: center center; /* 확대 중심 고정 */
  z-index: 1;
}



/* =========================================================
   OVERLAY TEXT (always perfect center!)
========================================================= */
.card-text {
  position: absolute;
  left: 0;
  bottom: -100%;              /* 숨겨진 상태 */
  width: 100%;

  padding: 15px 20px;

  display: flex;
  justify-content: center;    /* 가로 중앙 */
  align-items: center;        /* 세로 중앙 */
  text-align: center;

  font-size: 12px;
  font-weight: 600;
  color: #fbff00;

  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);

  opacity: 0;
  transition: bottom 0.9s cubic-bezier(.2, .9, .2, 1), opacity 0.45s ease;
  z-index: 3;
  pointer-events: none;       /* 오버레이가 클릭 잡지 않도록 */
}



/* =========================================================
   DESKTOP HOVER EFFECTS
========================================================= */

/* 기본 밝기 초기화 */
.feature-cards:hover .card {
  filter: brightness(100%);
}

/* hover 안 된 이미지 흐림 */
.feature-cards:hover .card:not(:hover) .card-img {
  filter: brightness(70%) blur(3px);
}

/* hover 된 카드 이미지 강조 */
.card:hover .card-img {
  filter: brightness(135%);
  transform: scale(1.04);
}

/* overlay 텍스트 등장 */
.card:hover .card-text {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
  text-shadow: 0 0 15px rgba(1,51,15,0.9);
}



/* =========================================================
   MOBILE (1024px 이하)
========================================================= */
@media (max-width: 1024px) {

  .feature-cards {
    width: 55vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vh;
    justify-items: start;
    margin: 0 auto 0 0;
  }

  .feature-cards .card {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;

    pointer-events: none; /* hover 기능 제거 */
    filter: none !important;
    transform: none !important;
  }

  /* hover 관련 전체 해제 */
  .feature-cards:hover .card,
  .feature-cards:hover .card:not(:hover),
  .card:hover,
  .card-img,
  .card:hover .card-text {
    filter: none !important;
    transform: none !important;
  }

  /* 모바일에서는 overlay 감춤 */
  .card-text {
    display: none;
    bottom: 0;
    opacity: 1;
  }
}

/**************************************************************/
/* ================================
   LAST GRID 기본 레이아웃
================================ */
.last_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  justify-content: center; /* 🔥 가로 중앙 */
  align-items: center;     /* 🔥 세로 중앙 */

  padding: 10px 0;
  z-index: 100;
  
}
.last_grid2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  justify-content: center; /* 🔥 가로 중앙 */
  align-items: center;     /* 🔥 세로 중앙 */

  padding: 10px 0;
  z-index: 100;
  margin-top: 10vh;
}


/* 카드 공통 */
.last_grid .card {
  position: relative;
  width: 30vw;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.35s ease;
}

.last_grid .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

/* 텍스트 오버레이 */
.last_grid .card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* =======================================
   1) 첫 번째 카드: hover 효과 완전 제거
======================================= */
.last_grid .card:first-child:hover {
  transform: none !important;
  box-shadow: none !important;
}

.last_grid .card:first-child:hover img {
  filter: none !important;
}

.last_grid .card:first-child:hover .card-text {
  opacity: 0 !important;
}

/* =======================================
   2) 세 번째 카드 (swap) : hover 시 이미지 교체만
======================================= */

.card.swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 기본이미지는 보임 */
.card.swap .img-hover {
  opacity: 0;
  transition: opacity 0.35s ease;

}

.card.swap .img-default {
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* hover 시 이미지 교체 */
.card.swap:hover .img-default {
  opacity: 0;

}

.card.swap:hover .img-hover {
  opacity: 1;
}

/* 3번째 카드는 기존 hover 효과 제거 */
.card.swap:hover {
  transform: none !important;
  box-shadow: none !important;
}

.card.swap:hover img {
  filter: none !important;
}

.card.swap:hover .card-text {
  opacity: 0 !important;
}

.card.swap:hover .view-icon {
  opacity: 0;
}


/* =======================================
   3) 나머지 카드 기본 hover 효과
======================================= */
.last_grid .card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.last_grid .card:hover img {
  filter: brightness(35%);
}

.last_grid .card:hover .card-text {
  opacity: 1;
}

/*******************************************************/

.content.gallery2 h2 {
  color: #3d3d3d; /* 원하는 색상 */
}

/******************************************************/


/* =============================
   🔹 썸네일 리스트 (motion)
============================= */
.motion-list {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-bottom: 8px;

  justify-content: center;
  align-items: center;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
}



.motion {
  position: relative;
   width: clamp(100px, 18vw, 180px); /* 🔥 반응형 핵심 */
  aspect-ratio: 3/4.5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  scroll-snap-align: center;
}

.motion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}




/* =============================
   🔥 motion-modal (전체 화면)
============================= */
.motion-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: left;
  z-index: 99999;
}

.motion-modal.active {
  display: flex !important;
}

/* 🔥 왼쪽 50%를 영상으로 채움 */
.motion-video-container {
  width: 50vw;
  height: 86vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 오른쪽 위/아래만 라운드 */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width:1200px){
  .motion-video-container {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
}

.motion-video-container video {
  max-width: 100%;   /* 가로 영상 지원 */
  max-height: 100%;  /* 세로 영상 지원 */
  width: auto;       /* 비율 유지 */
  height: auto;      /* 비율 유지 */
  object-fit: contain;
}

/* 🔥 닫기 버튼 */

.motion-close-btn {
  position: absolute;
  top: 50%;
  right: 45%;
  font-size: 50px;
  color: rgb(208, 255, 0);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100000;
}


@media (max-width:1200px){
.motion-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 48px;
  color: rgb(208, 255, 0);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100000;
}
}

/************************************************************/

/* 전체 래퍼 */
.marketing-label-group {
    text-align: center; /* 필요 시 조정 */
}

/* 타이틀 텍스트 */
.marketing-label {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

/* 구분용 점 */
.marketing-separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 10px;

    background-color: rgb(0, 251, 255);
    border-radius: 50%;

    position: relative;
    top: -3px; /* 텍스트 중앙 정렬 보정 */
}


/****************************************************************/
/* 🎯 motion 썸네일 전용 play 아이콘 */
.motion .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);

  font-size: 36px;
  color: #ffffff;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);

  z-index: 10;
}

/* 🔥 hover 시 노출 */
.motion:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/*********************************************************/

.sns-footer {
  width: 100%;
  padding: 20px 0;

  display: flex;
  justify-content: center;  /* 🔥 가로 중앙 */
  align-items: center;      /* 🔥 세로 중앙 */

  gap: 28px;
  background: transparent;
  margin-bottom: 20px;
}


.sns-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.33s ease;
}

@media (max-width:1200px){
.sns-icon {  
  width: 38px;
  height: 38px;  
}
}


.sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.9); /* 기본 흑백 모드 */
  transition: 0.33s ease;
}

.sns-icon:hover {
  transform: scale(1.18);
}

.sns-icon:hover img {
  filter: grayscale(0) brightness(1) drop-shadow(0 0 6px #39ff14); /* 네온 글로우 */
}


/********************************/

/********************************************************/

/* 🔥 중앙 정렬 + 굵은 타이포 */
.bottom_title {
    width: 100%;
    text-align: center;
    margin: 40px 0;
    overflow: visible;
    margin-bottom: 20px;

}

/* 🔥 텍스트 내부에 이미지가 채워지고 움직임 */
.bottom_title h1 {
    position: relative;
    display: inline-block;
    font-family: 'Inter', 'Pretendard', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 12rem);
    letter-spacing: -0.5px;
    /* 🔥 행간을 절반 수준으로 */
    line-height: 0.9;


    /* 핵심 이미지 */
    background-image: url("./bottom_title_bg.png");
    background-size: cover;
    background-position: 0 50%;
    background-repeat: repeat;

    /* 텍스트를 배경 마스크로 사용하도록 만드는 핵심 3줄 */
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* ⭐ 반드시 필요 */
    -webkit-background-clip: text;
    /* ⭐ 반드시 필요 */
    background-clip: text;   

}

/* 중앙 텍스트 블록 */
.block-center .center {
    text-align: center;
}

.block-inner .title {
  line-height: 1.15;   /* 🔥 title만 행간 축소 */
  margin-bottom: 10vh;

}

.block-center h4,
.block-center h5,
.block-center h6 {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

/* ▶ 플레이 아이콘 (motion 전용) */
/* 🔥 원형 플레이 버튼 */
.motion .play-icon-m {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);

  border: 2px solid rgba(255,255,255,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
  pointer-events: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ▶ 삼각형 (play) */
.motion .play-icon-m::before {
  content: "";
  display: block;

  width: 0;
  height: 0;

  border-left: 14px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;

  margin-left: 3px; /* 시각적 중앙 보정 */
}

@media (max-width: 768px) {
  .motion .play-icon-m {
    width: 44px;
    height: 44px;
  }

  .motion .play-icon-m::before {
    border-left-width: 11px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }
}

.motion .play-icon-m {
  transition: transform 0.25s ease, background 0.25s ease;
}

.motion:hover .play-icon-m {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0,0,0,0.7);
}


/**********************************************/
/* 👁 이미지 보기 아이콘 */
.view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255,255,255,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0.75;
  z-index: 5;
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* 눈 바깥 윤곽 */
.view-icon::before {
  content: "";
  width: 18px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50% / 60%;
  position: absolute;
}

/* 눈동자 */
.view-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}

.card:hover .view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}
@media (max-width: 768px) {
  .view-icon {
    width: 38px;
    height: 38px;
  }

  .view-icon::before {
    width: 14px;
    height: 9px;
  }

  .view-icon::after {
    width: 5px;
    height: 5px;
  }
}

/****************************************************************************/

/* 기본: 숨김 */
.orientation-lock {
  display: none;
}

/* 🔥 가로 모드일 때만 표시 */
@media screen and (orientation: landscape) {
  body > *:not(.orientation-lock) {
    display: none !important;
  }

  .orientation-lock {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: #000;
    color: #fff;

    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 1.2rem;
    font-weight: 600;
  }
}

/****************************************************************************/


.bottom-svg {
  position: relative;          /* 항상 화면 하단 */
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;               /* 배경 위, 콘텐츠 아래로 조절 */
  pointer-events: none;     /* 클릭 방해 방지 */
}

.bottom-svg img {
  width: 100%;
  height: auto;
  display: block;           /* 하단 여백 제거 */
}

























