@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --rose: #ef9aa5;
  --rose-dark: #d77987;
  --ink: #0b0b0d;
  --muted: #333238;
  --border: #d9d9de;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: #f7f7f8;
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.site {
  min-height: 100svh;
  background: #f7f7f8;
  overflow: hidden;
}
.hero {
  height: 185px;
  background:
    radial-gradient(circle at 50% 110%, rgba(255,255,255,.20), transparent 38%),
    linear-gradient(180deg, #ed9aa4, #ef9da7);
}
.profile {
  width: min(100%, 520px);
  min-height: calc(100svh - 185px);
  margin: 0 auto;
  padding: 0 22px 28px;
  text-align: center;
  position: relative;
}
.avatar-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: -76px auto 18px;
}
.avatar {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.verified {
  position: absolute;
  right: -2px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2da7df;
  border: 3px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
h1 {
  margin: 0;
  font-size: clamp(28px, 7vw, 34px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.045em;
}
.verified-name {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 3px;
  vertical-align: 5px;
  border-radius: 50%;
  background: #2da7df;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.tagline {
  margin: 14px 0 38px;
  font-size: 14px;
  letter-spacing: .015em;
  font-weight: 500;
}

.links { display: grid; gap: 18px; }
.main-link {
  min-height: 62px;
  display: grid;
  grid-template-columns: 43px 1fr 28px;
  align-items: center;
  gap: 7px;
  padding: 7px 15px 7px 9px;
  border: 2px solid var(--border);
  border-radius: 34px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0,0,0,.01);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.main-link.onlyfans { border-color: #d47b88; }
.main-link:hover, .main-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rose-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  outline: none;
}
.main-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dc7d8a;
  color: white;
  font-size: 20px;
}
.telegram-icon {
  background: #58a8dc;
  font-size: 23px;
  transform: rotate(-17deg);
}
.main-link strong {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.chevron { text-align: right; font-size: 32px; line-height: 1; font-weight: 400; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.social-card {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.social-card:hover, .social-card:focus-visible {
  transform: translateY(-2px);
  border-color: #b9b9c0;
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
  outline: none;
}
.social-icon { font-weight: 800; font-size: 29px; line-height: 1; }
.instagram { font-weight: 400; }
.tiktok { font-size: 31px; }
.youtube { font-size: 22px; }
.facebook { font-size: 31px; }

footer {
  margin-top: 34px;
  color: #8a8a90;
  font-size: 10px;
}

/* External-browser interstitial */
.browser-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
  overflow: auto;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.browser-screen.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.browser-content {
  width: min(100%, 620px);
  min-height: 100svh;
  padding: 38px 28px 50px;
  margin: 0 auto;
  text-align: left;
}
.browser-arrow {
  position: fixed;
  z-index: 2;
  top: 10px;
  right: 18px;
  width: 74px;
  height: 74px;
  pointer-events: none;
}
.browser-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0,0,0,.16);
  border-radius: 50%;
}
.browser-arrow span {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  animation: point .9s ease-in-out infinite alternate;
}
.mini-open-icon {
  margin-top: 5px;
  font-size: 25px;
  line-height: 1;
}
.mini-browser-icon {
  margin-top: 21px;
  font-size: 21px;
}
.browser-content h2 {
  margin: 43px 0 34px;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.browser-content > p {
  margin: 0 0 30px;
  font-size: 19px;
  line-height: 1.42;
}
.instruction {
  margin: 0 0 29px;
}
.number {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
}
.instruction p {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
}
.instruction strong { font-weight: 800; }
.browser-button {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: #111114;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.back-button {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 12px;
  border: 0;
  background: transparent;
  color: #66666c;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

@keyframes point {
  from { transform: translate(0,0); }
  to { transform: translate(5px,-4px); }
}

@media (max-width: 430px) {
  .hero { height: 185px; }
  .profile { padding-left: 18px; padding-right: 18px; }
  .avatar-wrap, .avatar { width: 150px; height: 150px; }
  .tagline { margin-bottom: 36px; }
  .links { gap: 18px; }
  .social-grid { gap: 16px; }
  .browser-content { padding-left: 10px; padding-right: 10px; }
  .browser-content h2 { margin-top: 43px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
