/* ===== Base ===== */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ===== Hero background ===== */
.hero-bg-grid {
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 150vw;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Offer card (50만원 -> 무료 제공) ===== */
.offer-card {
  position: relative;
  display: inline-block;
  max-width: 100%;
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  padding: 22px 28px 18px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
  animation: offer-pulse 2.6s ease-in-out infinite;
}

.offer-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4AF37;
  color: #0A0E17;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.offer-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 6px;
}

.price-old {
  color: #8b93a1;
  font-size: 1rem;
  font-weight: 500;
}

.price-arrow {
  color: #D4AF37;
  font-size: 0.85rem;
  opacity: 0.85;
}

.price-new {
  color: #D4AF37;
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

@keyframes offer-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08); }
  50% { box-shadow: 0 10px 36px rgba(212, 175, 55, 0.28); }
}

@media (max-width: 480px) {
  .offer-card {
    padding: 20px 18px 16px;
  }
  .offer-card-body {
    font-size: 0.95rem;
    gap: 8px;
  }
  .price-old {
    font-size: 0.92rem;
  }
  .price-new {
    font-size: 1.2rem;
  }
}

/* ===== Video section (필수 시청) ===== */
.video-frame-wrap[role="button"] {
  cursor: pointer;
}


  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 140vw;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

.video-must-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #f87171;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 999px;
  animation: badge-pulse 1.8s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.video-frame-wrap {
  position: relative;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(140deg, #D4AF37, #7a6420, #D4AF37);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.video-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.video-frame-wrap:hover .video-thumb {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(6, 9, 15, 0.55);
}

.video-thumb-play {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.95);
  color: #0A0E17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform .25s ease;
}

.video-frame-wrap:hover .video-thumb-play {
  transform: scale(1.1);
}

.video-thumb-label {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.video-play-pulse {
  position: absolute;
  top: -16px;
  right: -12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #D4AF37;
  color: #0A0E17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.video-hint {
  color: #9ca3af;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: hint-bounce 2s infinite;
}

@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ===== Certificate ===== */
.certificate-frame {
  position: relative;
  max-width: 360px;
  width: 100%;
}

.certificate-frame img {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.verified-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: #D4AF37;
  color: #0A0E17;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* ===== Career cards ===== */
.career-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: border-color .25s ease, transform .25s ease;
}

.career-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.career-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ===== Proof (수익인증) cards ===== */
.proof-swiper {
  padding-bottom: 44px;
}

.proof-card {
  background: linear-gradient(155deg, #17202f, #0d121c);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  display: flex;
  flex-direction: column;
}

.proof-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #D4AF37;
  font-weight: 700;
  font-size: 0.9rem;
}

.proof-card-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.proof-amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: #4ade80;
  margin-bottom: 8px;
}

.proof-sub {
  color: #9ca3af;
  font-size: 0.85rem;
}

.proof-fake-chart {
  margin-top: 24px;
  font-size: 3.2rem;
  color: rgba(212, 175, 55, 0.25);
}

.proof-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
  cursor: pointer;
}

.proof-nav-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.proof-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
}

.proof-swiper .swiper-pagination-bullet-active {
  background: #D4AF37;
  opacity: 1;
}

/* ===== Review (텔레그램 후기) 이미지 슬라이드 ===== */
.review-swiper {
  padding-bottom: 52px;
  overflow: visible;
}

.review-img-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1621;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

/* 활성 슬라이드 살짝 확대 강조 */
.swiper-slide-active .review-img-card {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 2px rgba(212,175,55,0.35);
}

/* 페이지네이션 */
.review-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.review-swiper .swiper-pagination-bullet-active {
  background: #D4AF37;
  opacity: 1;
  width: 22px;
  border-radius: 4px;
  transition: width 0.3s ease;
}
