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

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Pretendard', sans-serif;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.wrap {
  width: 100%;
}

@media (min-width: 768px) {
  body {
    background: black;
  }
  .wrap {
    max-width: 450px;
    margin: 0 auto;
    background: white;
  }
}

#countdown {
  display: inline-block;
  margin-left: 6px;

  font-family: 'Pretendard', sans-serif;
  font-weight: 800;          /* 멘트보다만 살짝 더 강조 */

  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;

  color: #69cb00;
}

.white-box {
  background: white;
}

.thumbnail img,
.landing-img img {
  width: 100%;
  display: block;
}

.title {
  font-size: 26px;
  font-weight: 700;
  padding: 10px 20px 10px;
}

.tags {
  font-size: 13px;
  color: #555;
  padding: 0px 20px 30px;
}

.social {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 20px;
}

.like {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.like i {
  font-size: 22px;
  color: #ff5fa2;
  transition: transform 0.15s ease;
}

.like.active i {
  transform: scale(1.15);
}

.star {
  color: gold;
}

.cta {
  width: calc(100% - 40px);
  margin: 0 20px 30px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #69cb00;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
  color: #000 !important;
  -webkit-text-fill-color: #000;
}

.cta:hover {
  background: #9ff049;
}

.timer {
  background: black;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 24px;
  font-weight: 800;          /* 멘트보다만 살짝 더 강조 */
}

.timer-sub {
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
}

.db {
  background: black;
  color: white;
  padding: 30px 20px 60px;
}

.input {
  display: flex;
  align-items: center;
  background: #111;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}


.input input {
  background: none;
  border: none;
  color: white;
  outline: none;
  width: 100%;
}

.submit {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  background: #69cb00;
  border: none;
  font-weight: 700;
}


.banner {
  margin-left: 20px;
  border-radius: 30px;
  background-color: #e6e6e6;
  text-align: center;
  margin-top: 30px;
  padding: 5px 10px;
  width: 150px;
  font-size: 13px;
}


/* 맨 위로 버튼 */
#topBtn {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #69cb00;
  color: black;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#topBtn:hover {
  background: #aae66a;
}

/* 모바일에서 살짝 더 작게 */
@media (max-width: 480px) {
  #topBtn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    right: 12px;
    bottom: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}



/* 개인정보 수집 동의 체크박스 */
.privacy {
  margin: 20px 0;
  font-size: 13px;
  color: #ccc;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

/* 핵심: checkbox 리셋 */
.privacy input[type="checkbox"] {
  appearance: auto;          /* 브라우저 기본 복구 */
  -webkit-appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #69cb00;
  flex-shrink: 0;
}

/* 텍스트 */
.privacy span {
  line-height: 1.4;
}

/* 자세히보기 버튼 */
.privacy-btn {
  background: none;
  border: none;
  color: #69cb00;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}
