:root {
  --bg-1: #07000d;
  --bg-2: #21002f;
  --pink: #ff0a88;
  --pink-2: #ff4fbd;
  --text: #ffffff;
  --muted: #d6c7dc;
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,10,136,.32), transparent 34%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 55%, #09000d);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .14;
}

.page {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px 14px 0;
}

.hero {
  text-align: center;
  padding: 12px 6px 16px;
}

.top-badge {
  display: inline-block;
  padding: 8px 13px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--glass);
  color: #ffd7ef;
  font-size: .78rem;
  letter-spacing: .4px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: clamp(2rem, 10vw, 3.2rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 0 22px rgba(255,10,136,.65);
}

.subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-size: .98rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 8px 0 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 0 32px rgba(255,10,136,.42), 0 18px 55px rgba(0,0,0,.45);
  background: #120018;
}

.photo-card img {
  display: block;
  width: 100%;
  height: min(68vh, 720px);
  object-fit: cover;
}

.first-photo img {
  object-position: center center;
}

.second-photo img {
  object-position: center center;
}

.photo-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
  pointer-events: none;
}

.photo-label,
.unlock {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(0,0,0,.46);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-weight: 700;
  text-align: center;
}

.unlock {
  color: #fff;
  animation: glowText 1.45s infinite ease-in-out;
}

.copy-card {
  margin: 0 0 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.copy-card p {
  margin-bottom: 11px;
  color: #f7edf7;
  font-size: 1rem;
  line-height: 1.45;
}

.copy-card p:last-child {
  margin-bottom: 0;
}

.mini-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-info div {
  padding: 14px 8px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,10,136,.14);
  border: 1px solid rgba(255,79,189,.32);
}

.mini-info span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.mini-info .number {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.highlight {
  color: #ff9bd8 !important;
  font-weight: 800;
}

.bottom-space {
  height: 90px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5,0,10,.72);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: block;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .7px;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pink), var(--pink-2), #ff7ad7);
  box-shadow: 0 0 24px rgba(255,10,136,.85), inset 0 0 8px rgba(255,255,255,.2);
  animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes glowText {
  0%, 100% { box-shadow: 0 0 12px rgba(255,10,136,.35); }
  50% { box-shadow: 0 0 25px rgba(255,10,136,.85); }
}

@media (min-width: 700px) {
  .page {
    padding-top: 24px;
  }

  .photo-card img {
    height: 720px;
  }
}
