:root {
  --bg-dark: #1A1A1A;
  --bg-gradient: linear-gradient(160deg, #2D2A1E 0%, #1A1A1A 40%, #1C1F2A 100%);
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-glow: rgba(200, 169, 110, 0.3);
  --text-white: #F5F5F5;
  --text-muted: #8A8A8A;
  --font-main: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  font-family: var(--font-main);
  color: var(--text-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; outline: none; color: inherit; }

/* ═══════════════════════════════════════
   1. DARK LUXE SPLASH
   ═══════════════════════════════════════ */
.v15-splash {
  position: relative;
  min-height: 100vh;
  background: var(--bg-gradient);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 28px 60px;
  overflow: hidden;
}

/* Floating Circular Bubbles Container */
.v15-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.v15-bub {
  position: absolute;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow), inset 0 0 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: v15-pop 0.6s ease forwards;
}

/* Sizes & positions for 8 bubbles */
.v15-bub:nth-child(1) { width: 120px; height: 120px; top: 8%;  left: 5%;  animation-delay: 0.1s; }
.v15-bub:nth-child(2) { width: 80px;  height: 80px;  top: 5%;  right: 15%; animation-delay: 0.3s; }
.v15-bub:nth-child(3) { width: 100px; height: 100px; top: 25%; right: 5%;  animation-delay: 0.5s; }
.v15-bub:nth-child(4) { width: 60px;  height: 60px;  top: 20%; left: 35%;  animation-delay: 0.2s; }
.v15-bub:nth-child(5) { width: 90px;  height: 90px;  top: 40%; left: 10%;  animation-delay: 0.7s; }
.v15-bub:nth-child(6) { width: 70px;  height: 70px;  top: 45%; right: 20%; animation-delay: 0.4s; }
.v15-bub:nth-child(7) { width: 110px; height: 110px; top: 60%; left: 30%;  animation-delay: 0.6s; }
.v15-bub:nth-child(8) { width: 55px;  height: 55px;  top: 55%; right: 8%;  animation-delay: 0.8s; }

/* Decorative text inside rotated bubbles */
.v15-bub-label {
  position: absolute;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.7); border: 2px solid var(--gold);
  display: flex; justify-content: center; align-items: center;
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold-light);
}
.v15-bub-label:nth-of-type(1) { top: 35%; left: 60%; transform: rotate(-20deg); }
.v15-bub-label:nth-of-type(2) { top: 70%; right: 5%; transform: rotate(15deg); }

@keyframes v15-pop {
  0%   { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* Bottom text block */
.v15-splash-txt { position: relative; z-index: 10; }
.v15-h1 {
  font-size: 38px; font-weight: 800; line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 16px;
}
.v15-h1 .v15-emoji { font-size: 32px; vertical-align: middle; }
.v15-splash-p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; max-width: 280px; }

.v15-btn-go {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--bg-dark);
  padding: 16px 32px; border-radius: 16px;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 10px 30px var(--gold-glow);
  transition: transform 0.2s;
}
.v15-btn-go:hover { transform: translateY(-2px); }
.v15-btn-go svg { width: 20px; height: 20px; }


/* ═══════════════════════════════════════
   2. MAIN APP — DARK GLASS FRAME
   ═══════════════════════════════════════ */
.v15-main { padding: 40px 0; }
.v15-wrap { max-width: 500px; margin: 0 auto; }
.v15-frame {
  background: linear-gradient(180deg, #222 0%, #1A1A1A 100%);
  border-radius: 44px; padding: 28px 20px 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.v15-app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.v15-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center;
}
.v15-nav-btn svg { width: 20px; height: 20px; }
.v15-app-title { font-size: 18px; font-weight: 800; }

/* Category Pills */
.v15-pills {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 32px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.v15-pills::-webkit-scrollbar { display: none; }
.v15-pill {
  flex-shrink: 0; padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); white-space: nowrap; transition: 0.2s;
}
.v15-pill--active { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }

/* Carousel Deck — Capsule/Oval Shape */
.v15-deck-wrap { position: relative; height: 460px; margin-bottom: 40px; }
#lp-hero-sizer { width: 100%; height: 100%; position: relative; }
.v15-deck-inner { position: absolute; inset: 0; }
.v15-deck-link { position: absolute; inset: 0; z-index: 20; }
.v15-showcase { position: absolute; inset: 0; z-index: 1; }

.heart {
  position: absolute; inset: 0;
  border-radius: 120px; /* Capsule shape! */
  overflow: hidden; background: #333;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s;
}
.heart__img { width: 100%; height: 100%; object-fit: cover; }

.heart[data-pos="front"] { transform: scale(1) rotate(0); opacity: 1; z-index: 5; }
.heart[data-pos="back"]  { transform: translate(20px, 10px) scale(0.92) rotate(4deg); opacity: 0.5; z-index: 4; }
.heart[data-pos="left1"] { transform: translate(-20px, 10px) scale(0.92) rotate(-4deg); opacity: 0.3; z-index: 3; }

/* Card Overlay */
.v15-card-ui { position: absolute; inset: 0; pointer-events: none; z-index: 10; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }

.v15-card-badge {
  align-self: flex-end;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 16px;
  padding: 8px 16px; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; gap: 6px;
}
.v15-card-badge svg { width: 14px; height: 14px; fill: #FF5A5F; }

.v15-card-meta {
  background: rgba(0,0,0,0.35); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 20px;
}
.v15-card-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.v15-card-loc { font-size: 13px; color: var(--gold-light); display: flex; align-items: center; gap: 4px; }

/* Action Buttons */
.v15-actions { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.v15-act {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center; transition: 0.2s;
}
.v15-act:hover { background: rgba(255,255,255,0.12); }
.v15-act--like { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); box-shadow: 0 10px 20px var(--gold-glow); }
.v15-act svg { width: 24px; height: 24px; }

/* ═══════════════════════════════════════
   3. PROFILE GRID (Dark Glass Cards)
   ═══════════════════════════════════════ */
.v15-section { margin-bottom: 50px; }
.v15-h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }

.v15-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.pcard {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 0.75;
  background: #2A2A2A;
}
.pcard__media { position: absolute; inset: 0; }
.pcard__img { width: 100%; height: 100%; object-fit: cover; }

.pcard__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
}
.pcard__name { font-size: 14px; font-weight: 800; }
.pcard__meta { font-size: 11px; color: var(--text-muted); }
.pcard__age {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--bg-dark);
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px;
}
.pcard__heart, .pcard__pin { display: none; }

/* ═══════════════════════════════════════
   4. FORM
   ═══════════════════════════════════════ */
.v15-form-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px; padding: 32px 24px;
}
.v15-lbl { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.v15-select {
  width: 100%; appearance: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  background: rgba(255,255,255,0.06); padding: 16px;
  font-family: inherit; font-size: 15px; font-weight: 700; color: #fff; outline: none;
}
.v15-select option { background: #333; color: #fff; }

.v15-age-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.v15-age-val { font-weight: 800; color: var(--gold); }

.v15-slider { position: relative; height: 24px; margin-top: 8px; }
.v15-slider__track { position: absolute; left: 0; right: 0; top: 50%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; transform: translateY(-50%); }
.v15-slider__input { position: absolute; width: 100%; appearance: none; background: transparent; pointer-events: none; }
.v15-slider__input::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px var(--gold-glow); pointer-events: auto; cursor: pointer;
}

.v15-btn-submit {
  width: 100%; background: var(--gold); color: var(--bg-dark);
  padding: 18px; border-radius: 100px; font-size: 16px; font-weight: 800;
  margin-top: 24px; transition: 0.2s;
  box-shadow: 0 10px 25px var(--gold-glow);
}
.v15-btn-submit:hover { transform: translateY(-2px); }
.v15-warn { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

.v15-footer { text-align: center; padding: 40px 0; font-size: 13px; font-weight: 700; color: var(--text-muted); opacity: 0.5; }

@media (max-width: 600px) {
  .v15-h1 { font-size: 32px; }
  .v15-deck-wrap { height: 400px; }
}
