/* NUMBER FIVE - custom styles */

body {
  font-family: 'Noto Sans KR', sans-serif;
}

.gold-text {
  background: linear-gradient(180deg, #f5e08a 0%, #d4af37 50%, #a3822a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slide {
  transition: opacity .7s ease;
}

.hot-badge {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------- Custom scrollbar (세로 스크롤 목록) ---------- */
.fancy-scroll::-webkit-scrollbar {
  width: 6px;
}

.fancy-scroll::-webkit-scrollbar-track {
  background: #141414;
  border-radius: 3px;
}

.fancy-scroll::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 3px;
}

.fancy-scroll {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #141414;
}

/* ---------- Modal animation ---------- */
#navModal .modal-overlay {
  opacity: 0;
  transition: opacity .3s ease;
}

#navModal .modal-panel {
  opacity: 0;
  transform: translateY(24px) scale(.95);
  transition: opacity .3s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

#navModal.show .modal-overlay {
  opacity: 1;
}

#navModal.show .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
