﻿:root {
  --bg-dark: #0b0e14;
  --bg-card: #141824;
  --bg-card-hover: #1b2030;
  --pink-primary: #f43f5e;
  --pink-glow: rgba(244, 63, 94, 0.35);
  --kakaopay-yellow: #fee500;
  --kakaopay-dark: #191919;
}

body {
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  background-color: var(--bg-dark);
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  flex-column: column;
  overflow-x: hidden;
}

/* Glassmorphism Navigation */
.nav-glass {
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1020;
}

.brand-title {
  letter-spacing: 0.05em;
}

.text-pink {
  color: var(--pink-primary) !important;
}

.text-pink-gradient {
  background: linear-gradient(135deg, #fb7185 0%, #f43f5e 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-pink-gradient {
  background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
  color: #ffffff;
  border: none;
  transition: all 0.25s ease;
}

.btn-pink-gradient:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--pink-glow);
}

/* KakaoPay Official Button */
.btn-kakaopay {
  background-color: var(--kakaopay-yellow);
  color: var(--kakaopay-dark);
  border: none;
  transition: all 0.2s ease;
  font-weight: 700;
}

.btn-kakaopay:hover {
  background-color: #fbd800;
  color: var(--kakaopay-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
}

.kpay-logo {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-pink {
  width: 400px;
  height: 400px;
  background: #f43f5e;
  top: -100px;
  left: 20%;
}

.glow-purple {
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  top: 50px;
  right: 15%;
}

/* Hero Badge */
.badge-glow {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fca5a5;
}

/* Gallery Cards */
.gallery-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 63, 94, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(244, 63, 94, 0.15);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #000000;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

/* Blur Effect for Locked VIP Images */
.premium-img.locked {
  filter: blur(14px) brightness(0.65);
  transform: scale(1.08);
}

.premium-img.unlocked {
  filter: none;
  transform: none;
}

/* Overlay & Badges */
.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 4;
}

.card-img-wrap:hover .img-overlay {
  opacity: 1;
}

.overlay-icon {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 6px;
}

/* Lock Overlay */
.img-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 14, 20, 0.5);
  z-index: 4;
  transition: all 0.3s ease;
}

.lock-icon {
  font-size: 2.2rem;
  animation: pulse-lock 2s infinite ease-in-out;
}

@keyframes pulse-lock {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Pricing Section */
.bg-dark-ambient {
  background: linear-gradient(180deg, rgba(20, 24, 36, 0.6) 0%, rgba(11, 14, 20, 0.9) 100%);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.featured-card {
  background: linear-gradient(180deg, #1d2235 0%, #151928 100%);
  border: 1.5px solid var(--pink-primary) !important;
}

.shadow-pink {
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.2);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.4);
}

/* Lightbox Modal */
.lb-main-img {
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

.lb-lock-curtain {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Pay Option in Modal */
.pay-option-card {
  transition: all 0.2s ease;
}

.pay-option-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bg-pink-tint {
  background: rgba(244, 63, 94, 0.12) !important;
}

/* Helper Utilities */
.fs-7 { font-size: 0.9rem; }
.fs-8 { font-size: 0.8rem; }
.fs-9 { font-size: 0.72rem; }
.p-3-5 { padding: 1.25rem; }
.cursor-pointer { cursor: pointer; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-1000 { max-width: 1000px; }
.hover-pink:hover { color: var(--pink-primary) !important; }
.text-light-subtle { color: #94a3b8; }