.btn-buy {
  color: #fff !important;
}

/* 타임세일 배너 스타일 - 다른 코드에 영향이 없도록 #timesale-banner 선택자 사용 */
#timesale-banner {
  /* 원하는 배경색/그라디언트로 수정 가능 */
  background-color: #f8f8f8;
  /* 예: 그라디언트를 쓰고 싶다면:
     background: linear-gradient(to right, #ff7e5f, #feb47b);
  */
  width: 100%;
  height: 50px; /* 기존 높이의 절반 */
  position: relative;
  overflow: hidden;
  /* 배너 하단의 하얀색 줄(테두리) 제거 */
  /* border-bottom: 1px solid #ccc; */
}

#timesale-banner .banner-content {
  display: flex;
  align-items: center;      /* 수직 중앙 정렬 */
  justify-content: center; /* 수평 중앙 정렬 */
  height: 100%;
  text-align: center;      /* 텍스트 중앙 정렬 */
}

#timesale-banner .sale-title {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1;
}

#timesale-banner .countdown-wrapper {
  margin-left: 10px; /* 타이틀과 타이머 사이 간격 */
  font-size: 10px;
  color: inherit;
}

/* 닫기(x) 버튼 삭제했으므로 관련 스타일 제거
#timesale-banner .close-button { ... }
*/

/* 타임세일끝 */




/* 기본 전역 스타일 */
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #111;
  color: #fff;
}

/* 섹션 제목 */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff7b00;
}

/* 슬라이더 전체 영역 */
.pricing-slider {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 뷰포트: 슬라이드가 보이는 영역 */
.slider-viewport {
  overflow: hidden;
  position: relative;
}

/* 슬라이드 트랙: 원본 세트와 복제 세트를 포함하며 애니메이션 적용 */
.slider-track {
  display: flex;
  /* 애니메이션: 전체 콘텐츠의 절반(원본 세트 너비)만큼 왼쪽으로 이동 지나가는속도 */
  animation: scroll 15s linear infinite;
}

/* 키프레임 애니메이션: 0%에서 100%까지 translateX(-50%) */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 카드 스타일 */
.card {
  flex: 0 0 300px;      /* 고정 너비 */
  background-color: #222;
  border-radius: 8px;
  margin-right: 20px;    /* 카드 간 간격 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:last-child {
  margin-right: 0;
}

/* 카드 헤더 */
.card-header {
  background-color: #333;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px;
  position: relative;
}

.card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ff7b00;
}

.card-header .rating {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.9rem;
  color: #ccc;
}

/* 카드 바디 */
.card-body {
  padding: 16px;
}

.card-body .price {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #ff7b00;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-body ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* 카드 푸터 */
.card-footer {
  padding: 16px;
  text-align: center;
  background-color: #333;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.btn-buy {
  display: inline-block;
  background-color: #ff7b00;
  color: #111;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn-buy:hover {
  background-color: #ff9a33;
}

/* 반응형 (모바일) */
@media (max-width: 480px) {
  .card {
    flex: 0 0 80%;
    margin-right: 16px;
  }
  .card-header h3 {
    font-size: 1rem;
  }
  .card-body .price {
    font-size: 1.25rem;
  }
}


/* Canvas 기본 설정 */
.canvas {
    position: relative;
    width: 400px;  /* 적절한 크기 조정 */
    height: 300px;
    background: transparent;
    overflow: hidden;  /* 넘치는 요소 숨김 */
}

/* Tracker 요소 기본 배치 */
.tracker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: red;  /* 테스트용 색상 */
    border-radius: 50%;  /* 원형 */
}

/* 카드 스타일 */
#card {
    position: relative;
    width: 200px;
    height: 150px;
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

h5.text-center span {
    display: block;
    text-align: center;
}

.canvas {
    position: relative;
    width: 400px;
    height: 300px;
    background: transparent;
}

.tracker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: red; /* 임시 색상 */
}

/* From Uiverse.io by ayman-ashine */ 
.loader {
  --c-1: #a2ff37;
  --c-2: #5bb2ff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layer {
  font-size: 25px;
  font-family: "Segoe UI", Tahoma;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
}

.layer:nth-child(1) {
  color: var(--c-1);
  animation: kfs-3412 0.5s infinite;
}

.layer:nth-child(2) {
  color: var(--c-2);
  animation: kfs-3412 0.5s 0.25s infinite;
}

@keyframes kfs-3412 {
  0% {
    text-shadow: 0 0 30px var(--c-1);
    transform: scaleY(0);
    z-index: 2;
  }
  50% {
    transform: scaleY(1.5);
    z-index: 2;
  }
  100% {
    transform: scaleY(1.5);
    z-index: 0;
  }
}




body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #111;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff7b00;
}

.pricing-slider {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-viewport {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card {
  flex: 0 0 300px;
  background-color: #222;
  border-radius: 8px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:last-child {
  margin-right: 0;
}

.card-header {
  background-color: #333;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px;
  position: relative;
}

.card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ff7b00;
}

.card-header .rating {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.9rem;
  color: #ccc;
}

.card-body {
  padding: 16px;
}

.card-body .price {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #ff7b00;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-body ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-footer {
  padding: 16px;
  text-align: center;
  background-color: #333;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.btn-buy {
  display: inline-block;
  background-color: #ff7b00;
  color: #111;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn-buy:hover {
  background-color: #ff9a33;
}

@media (max-width: 480px) {
  .card {
    flex: 0 0 80%;
    margin-right: 16px;
  }
  .card-header h3 {
    font-size: 1rem;
  }
  .card-body .price {
    font-size: 1.25rem;
  }
}


/* 상단 배너 스타일 */
.timesale-banner {
  width: 100%;
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* 화면이 좁아지면 줄바꿈 */
}

.sale-title {
  font-size: 1.5rem;
  margin: 0 20px 0 0;
}

.countdown-wrapper {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

#countdown {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 8px;
}

.countdown-label {
  font-size: 0.9rem;
}

/* 구매 버튼 */
.btn-buy {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-buy:hover {
  background-color: #f0f0f0;
}

/* 반응형 (모바일) */
@media (max-width: 600px) {
  .sale-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  #countdown {
    font-size: 1.2rem;
  }
  .countdown-label {
    font-size: 0.8rem;
  }
  .btn-buy {
    margin-top: 10px;
  }
}


/* ggss.css */
/* 1) 전체 컨테이너 */
#signup-container {
  background-color: #fff;
  min-height: 100vh;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 2) 카드 래퍼 => 가로 중앙정렬 */
#signup-container .card-wrapper {
  width: 350px;
  margin: 50px auto;
  padding: 20px;
}

/* 3) 카드 (폼 박스 내부 스타일) */
#signup-container .card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 20px;
}

/* 4) 회원가입 타이틀 */
#signup-container .signup-title {
  margin-bottom: 20px;
  font-size: 24px;
}

/* 5) 폼 그룹 & 라벨 */
#signup-container .form-group {
  margin-bottom: 15px;
}
#signup-container .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

/* 6) 인풋 필드 (인풋) */
#signup-container .form-control {
  width: 280px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  display: block;
}

/* ================ */
/* 회원가입 버튼 (.join-btn) */
/* ================ */
.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start; 
  width: 300px;
  padding: 12px;
  margin: 10px 0;
  background-color: #ff8355;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}
.join-btn:hover {
  background-color: #e26b48;
}

/* 아이콘 래퍼 (회원가입 버튼용) */
.join-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.placeholder-icon {
  display: block;
  width: 1px;
  height: 1px;
}

/* ================ */
/* 구글 계정으로 가입 (.google-btn) */
/* ================ */
.google-btn {
  display: inline-flex;  
  align-items: center;
  justify-content: flex-start;
  width: 300px;  
  padding: 12px;
  margin: 10px 0;
  background-color: #0055FF;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}
.google-btn:hover {
  background-color: #003bb8;
}

/* 아이콘 래퍼 (구글 버튼용) */
.google-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.google-icon-wrapper i {
  font-size: 18px;
}

/* 구글 버튼 감싸는 div */
.google-signup {
  margin-top: 5px;  
}

/* ================ */
/* 기타 링크들 (로그인, 홈) */
/* ================ */
#signup-container .login-link {
  font-size: 14px;
  margin-top: 15px;
}
#signup-container .login-link a {
  color: #007bff;
  text-decoration: none;
}
#signup-container .login-link a:hover {
  text-decoration: underline;
}

#signup-container .home-link {
  font-size: 14px;
  margin-top: 10px;
}
#signup-container .home-link a {
  color: #007bff;
  text-decoration: none;
}
#signup-container .home-link a:hover {
  text-decoration: underline;
}

/* ================ */
/* 푸터 - 텍스트 중앙 정렬 */
/* ================ */
#signup-container #footer {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  margin-top: 50px;
}

/* footer-content 폭 350px, 중앙 정렬 */
#signup-container .footer-content {
  width: 350px;
  margin: 0 auto;        /* 가운데 정렬 */
  text-align: center;    /* 텍스트 중앙 정렬 */
}

#signup-container .small-text {
  font-size: 12px;
  color: #666;
}


