* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0e0b10;
  --card: #1a1a1f;
  --text: #f0eaf5;
  --muted: rgba(240,234,245,0.55);
  --pink: #f0387a;
  --pink2: #e8206a;
  --glow1: rgba(180,60,160,0.2);
  --glow2: rgba(100,40,140,0.15);
}
html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
body::before {
  content: '';
  position: fixed;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -15%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--glow2) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.card {
  position: relative; z-index: 1;
  background: var(--card);
  border-radius: 18px;
  padding: 40px 36px 36px;
  width: 420px;
  max-width: 92vw;
  text-align: center;
}
.avatar-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 2.5px solid rgba(240,56,122,0.6);
}
.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.name {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}
.cta-btn {
  display: block;
  width: 100%; padding: 15px;
  border-radius: 10px;
  background: var(--pink);
  border: none; color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}
.cta-btn:hover { background: var(--pink2); transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }
.ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ig-btn:hover { background: rgba(255,255,255,0.12); }
.ig-btn svg { width: 15px; height: 15px; fill: var(--muted); flex-shrink: 0; }
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); z-index: 100;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }
.popup {
  background: #1a1520;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 28px;
  max-width: 320px; width: 88%; text-align: center;
}
.popup-title { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 10px; }
.popup-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; font-weight: 300; }
.popup-btns { display: flex; flex-direction: column; gap: 10px; }
.btn-yes {
  padding: 13px; border-radius: 10px;
  background: var(--pink); border: none; color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 14px; cursor: pointer;
  transition: background 0.2s;
}
.btn-yes:hover { background: var(--pink2); }
.btn-no {
  padding: 10px; border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); font-family: 'Outfit', sans-serif;
  font-size: 13px; cursor: pointer;
}
