:root {
  --bg: #08060f;
  --card: #160b22;
  --pink: #ff2ea8;
  --pink-2: #ff4ec8;
  --text: #f5f2fa;
  --muted: #c9c4d4;
  --line: rgba(255, 46, 168, 0.18);
  --green: #22c55e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  min-height: 100%;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

.page {
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.avatar-wrap { position: relative; width: 210px; height: 210px; }

.avatar {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--pink), 0 0 28px rgba(255, 46, 168, 0.55);
}

.online {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  background: var(--green);
  border: 4px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: livePulse 1.4s ease-out infinite;
  z-index: 2;
}
.online::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(34,197,94,.55);
  animation: liveRing 1.4s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.75); transform: scale(1); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); transform: scale(1.08); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); transform: scale(1); }
}
@keyframes liveRing {
  0% { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}

.name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 1px;
  line-height: 0.9;
}

.badges { display: flex; align-items: center; gap: 8px; }
.flag { font-size: 28px; line-height: 1; }

.verified {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2f6bff;
  display: grid;
  place-items: center;
}
.verified svg { width: 18px; height: 18px; fill: #fff; }

.tagline {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 300;
}

.stats {
  display: flex;
  gap: 36px;
  margin-top: 22px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat .icon {
  width: 28px;
  height: 28px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}

.stat strong { display: block; font-size: 22px; }
.stat span { color: var(--muted); font-size: 12px; letter-spacing: 1px; }

.ctas { display: grid; gap: 16px; }

.cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #1a0d28, #12081c);
  border: 1px solid var(--pink);
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(255, 46, 168, 0.18);
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255, 46, 168, 0.32);
}

.cta-icon {
  width: 36px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.cta-icon.lock svg {
  width: 28px;
  height: 28px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}

.cta-copy { flex: 1; }
.cta-copy strong { display: block; letter-spacing: 0.6px; }
.cta-copy small { color: var(--muted); }

.arrow {
  width: 34px;
  height: 34px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 28px;
  line-height: 1;
}

.gallery-block { margin-top: 56px; }

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-head .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
}

.updated { color: var(--pink); font-size: 13px; font-weight: 600; }
.updated::before { content: "•"; margin: 0 8px; color: var(--pink); }

.view-all {
  color: var(--pink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
}

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

.shot {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1024;
  min-height: 260px;
}

.shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 6, 15, 0.18);
  color: var(--pink);
  pointer-events: none;
}

.lock-overlay svg { width: 72px; height: 72px; filter: drop-shadow(0 0 10px rgba(255,46,168,.7)); }

.shot.locked { outline: 1px solid var(--pink); }

footer {
  max-width: 1366px;
  margin: 0 auto;
  padding: 22px 48px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #8d8798;
  font-size: 13px;
}

footer a { color: #8d8798; text-decoration: none; }

html.funnel-open,
body.funnel-open {
  overflow: hidden;
  height: 100%;
}

body.funnel-open .page,
body.funnel-open footer {
  filter: blur(14px);
  pointer-events: none;
}

.funnel-overlay[hidden] { display: none !important; }

.funnel-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.72);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.funnel-card {
  position: relative;
  width: min(400px, 100%);
  margin: auto;
  background: #1c1a22;
  border-radius: 18px;
  padding: 26px 18px 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.funnel-x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #2a2830;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.funnel-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--pink);
  font-size: clamp(22px, 6vw, 30px);
  letter-spacing: 1px;
  margin: 8px 28px 10px;
}

#popupHeadline {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

#popupHeadline span { font-style: italic; }

.funnel-steps {
  color: #cfc9d6;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.funnel-banner {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 14px;
}

.funnel-btn {
  display: block;
  width: 100%;
  background: #111;
  color: var(--pink);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 17px;
}

.legal { padding: 48px 24px; }
.legal-wrap { max-width: 720px; margin: 0 auto; line-height: 1.6; }
.legal-wrap h1 { font-family: Inter, sans-serif; font-size: 32px; margin: 16px 0; }
.legal-wrap ul { margin: 16px 0 16px 20px; }
.back { color: var(--pink); text-decoration: none; }

@media (max-width: 980px) {
  .page { padding: 28px 18px 60px; }
  .hero, .profile { grid-template-columns: 1fr; }
  .avatar-wrap, .avatar { width: 140px; height: 140px; margin: 0 auto; }
  .identity { text-align: left; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot img { height: 200px; }
  footer { padding: 18px; gap: 12px; }
}
