:root {
  color-scheme: dark;
  --accent: #ff4d8d;
  --page: #070707;
  --surface: #121212;
  --surface-2: #191919;
  --text: #ffffff;
  --muted: #aaa7ad;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --page-width: 570px;
  --outer-padding: 8px;
  --top-padding: 8px;
  --bottom-padding: 28px;
  --content-padding: 14px;
  --container-radius: 30px;
  --section-spacing: 12px;
  --container-offset-x: 0px;
  --content-align: center;
  --content-justify: center;
  --type-scale: 1;
  --hero-height-desktop: 520px;
  --hero-height-mobile: 400px;
  --hero-radius: 22px;
  --hero-content-bottom: 24px;
  --hero-image-x: 50%;
  --hero-image-y: 34%;
  --social-size: 43px;
  --social-gap: 5px;
  --social-overlap: 18px;
  --link-columns: 2;
  --tile-height-desktop: 152px;
  --tile-height-mobile: 105px;
  --featured-height-desktop: 210px;
  --featured-height-mobile: 145px;
  --tile-gap: 10px;
  --tile-radius: 14px;
  --gallery-columns: 4;
  --gallery-item-width: 25%;
  --gallery-height: 138px;
  --gallery-gap: 10px;
  --contact-padding: 16px;
  --contact-radius: 16px;
  --backdrop-blur: 70px;
  --backdrop-saturation: 145%;
  --backdrop-brightness: 68%;
  --backdrop-blue-glow: .78;
  --sheet-width: 600px;
  --sheet-max-height: 76vh;
  --mature-height: 360px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: calc(16px * var(--type-scale));
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
a { color: inherit; }
img { display: block; }

.desktop-backdrop { display: none; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: .14;
  filter: blur(120px);
  pointer-events: none;
}
.ambient-one { top: 12%; left: calc(50% - 480px); background: var(--accent); }
.ambient-two { top: 55%; right: calc(50% - 500px); background: #593dff; }

.profile-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--outer-padding) * 2)), var(--page-width));
  margin: 0 auto;
  padding: var(--top-padding) var(--content-padding) var(--bottom-padding);
  transform: translateX(var(--container-offset-x));
}

.mini-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 8px 12px;
  font-size: 14px;
  font-weight: 800;
}

.mini-profile img {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.admin-shortcut {
  margin-left: auto;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
  transition: .2s ease;
}
.admin-shortcut:hover { border-color: var(--accent); color: #fff; }

.verified-badge {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #6b73ff;
  color: white;
  font-size: 10px;
  box-shadow: 0 0 0 2px rgba(107, 115, 255, .22);
}

.hero-card {
  position: relative;
  isolation: isolate;
  height: var(--hero-height-desktop);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--hero-radius);
  background: #171717;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-x) var(--hero-image-y);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 38%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.94) 100%);
}

.hero-content {
  position: absolute;
  inset: auto 24px var(--hero-content-bottom);
  z-index: 1;
  text-align: var(--content-align);
}

.hero-content h1 {
  display: flex;
  align-items: center;
  justify-content: var(--content-justify);
  gap: 9px;
  margin: 0;
  font-size: clamp(calc(28px * var(--type-scale)), 7vw, calc(42px * var(--type-scale)));
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.hero-verified { width: 21px; height: 21px; font-size: 12px; }
.handle { margin: 7px 0 0; color: rgba(255,255,255,.72); font-size: calc(15px * var(--type-scale)); font-weight: 600; }

.social-rail {
  display: flex;
  justify-content: var(--content-justify);
  gap: var(--social-gap);
  margin: calc(var(--social-overlap) * -1) 0 0;
  position: relative;
  z-index: 3;
}

.social-link {
  display: grid;
  width: var(--social-size);
  height: var(--social-size);
  place-items: center;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 18px rgba(0,0,0,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-link:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 25px rgba(0,0,0,.55); }
.social-link img { width: calc(var(--social-size) * .48); height: calc(var(--social-size) * .48); object-fit: contain; }
.social-link.snapchat { background: #fffc00; }
.social-link.onlyfans { background: #fff; }

.follower-total {
  display: flex;
  align-items: center;
  justify-content: var(--content-justify);
  gap: 6px;
  width: 100%;
  margin: 10px 0 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: calc(15px * var(--type-scale));
}
.follower-total span:first-child { font-weight: 800; }
.chevron { color: var(--muted); font-size: 18px; transition: transform .2s ease; }
.follower-total[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.live-status {
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 9px 0 0;
  color: #84dcaa;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live-status:not([hidden]) { display: flex; }
.live-status span { width: 6px; height: 6px; border-radius: 50%; background: #51da8c; box-shadow: 0 0 10px #51da8c; }

.intro { padding: var(--section-spacing) 12px calc(var(--section-spacing) + 3px); text-align: var(--content-align); }
.intro p { margin: 3px 0; }
#location { font-size: calc(13px * var(--type-scale)); font-weight: 800; letter-spacing: .08em; }
#bio { color: var(--muted); font-size: calc(14px * var(--type-scale)); line-height: 1.6; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(var(--link-columns), 1fr);
  gap: var(--tile-gap);
}

.tile {
  position: relative;
  min-height: var(--tile-height-desktop);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--tile-radius);
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  transition: transform .25s ease, border-color .25s ease, min-height .38s cubic-bezier(.2,.8,.2,1);
}
.tile[role="link"] { cursor: pointer; }
.tile:first-child { grid-column: 1 / -1; min-height: var(--featured-height-desktop); }
.tile:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.26); }
.tile-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover .tile-background { transform: scale(1.035); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 45%, rgba(0,0,0,.88) 100%); }
.tile-icon { position: absolute; top: 10px; left: 10px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: white; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.tile-icon img { width: 15px; height: 15px; }
.tile-label { position: absolute; inset: auto 13px 11px; font-size: calc(15px * var(--type-scale)); font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.8); }
.mature-pill { position: absolute; top: 16px; right: 16px; padding: 6px 9px; border-radius: 999px; background: rgba(0,0,0,.65); backdrop-filter: blur(12px); font-size: 10px; font-weight: 800; letter-spacing: .08em; }

.tile:first-child.disclaimer-active { min-height: max(var(--featured-height-desktop), var(--mature-height)); }
.inline-disclaimer { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; padding: 42px 32px 30px; background: radial-gradient(circle at 50% -20%, color-mix(in srgb, var(--accent) 25%, #6b4335), #554039 45%, #171819 100%); text-align: center; opacity: 0; transform: scale(.985); transition: opacity .28s ease, transform .38s cubic-bezier(.2,.8,.2,1); }
.inline-disclaimer.visible { opacity: 1; transform: scale(1); }
.inline-disclaimer-brand { position: absolute; top: 16px; left: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px #65b8f5; }
.inline-disclaimer-brand img { width: 21px; height: 21px; }
.inline-eye { display: grid; place-items: center; margin-bottom: 9px; }
.inline-eye svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inline-disclaimer h2 { margin: 0 0 10px; font-size: calc(18px * var(--type-scale)); }
.inline-disclaimer p { max-width: 430px; margin: 0 0 20px; color: rgba(255,255,255,.9); font-size: calc(14px * var(--type-scale)); line-height: 1.5; }
.inline-continue { width: min(100%, 440px); padding: 15px 20px; border-radius: 999px; background: #fff; color: #080808; font-size: calc(15px * var(--type-scale)); font-weight: 800; text-decoration: none; transition: transform .2s ease; }
.inline-continue:hover { transform: scale(1.015); }

.gallery-wrap { position: relative; margin-top: var(--section-spacing); }
.gallery-wrap[hidden] { display: none; }
.gallery { display: flex; gap: var(--gallery-gap); overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 calc(var(--gallery-item-width) - var(--gallery-gap)); min-width: 0; height: var(--gallery-height); overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: min(var(--tile-radius), 18px); background: var(--surface); cursor: zoom-in; scroll-snap-align: start; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.carousel-button { position: absolute; z-index: 2; top: 50%; display: grid; width: 30px; height: 30px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(7,7,7,.78); color: #fff; cursor: pointer; font-size: 22px; line-height: 1; backdrop-filter: blur(8px); }
.carousel-previous { left: 6px; }
.carousel-next { right: 6px; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 40; display: grid; grid-template-columns: minmax(44px, 1fr) minmax(0, 1100px) minmax(44px, 1fr); align-items: center; padding: 24px; animation: lightbox-in .25s ease both; }
@keyframes lightbox-in { from { opacity: 0; } }
.lightbox-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0,0,0,.9); backdrop-filter: blur(16px); cursor: zoom-out; }
.lightbox-figure { position: relative; z-index: 1; grid-column: 2; display: grid; justify-items: center; margin: 0; }
.lightbox-figure img { display: block; max-width: 100%; max-height: calc(100vh - 90px); border-radius: 13px; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,.55); opacity: 1; transform: scale(1); transition: opacity .16s ease, transform .22s ease; }
.lightbox-figure img.changing { opacity: 0; transform: scale(.985); }
.lightbox-figure figcaption { margin-top: 9px; color: rgba(255,255,255,.65); font-size: 11px; }
.lightbox-close, .lightbox-nav { position: fixed; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(0,0,0,.52); color: #fff; cursor: pointer; backdrop-filter: blur(10px); }
.lightbox-close { top: 18px; right: 18px; width: 38px; height: 38px; font-size: 26px; }
.lightbox-nav { top: 50%; width: 44px; height: 44px; transform: translateY(-50%); font-size: 34px; }
.lightbox-previous { left: 18px; }
.lightbox-next { right: 18px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--section-spacing);
  padding: var(--contact-padding) calc(var(--contact-padding) + 2px);
  border: 1px solid var(--line);
  border-radius: var(--contact-radius);
  background: var(--surface);
  font-size: calc(13px * var(--type-scale));
  font-weight: 700;
  text-decoration: none;
}
.mail-icon { font-size: 18px; color: var(--muted); }
.contact-arrow { margin-left: auto; color: var(--muted); font-size: 18px; }

footer { padding: calc(var(--section-spacing) + 7px) 0 3px; color: var(--muted); text-align: var(--content-align); font-size: calc(12px * var(--type-scale)); }
.footer-mark { display: flex; justify-content: var(--content-justify); align-items: center; margin-bottom: 10px; }
.footer-mark img { width: 38px; height: 38px; border: 2px solid var(--page); border-radius: 50%; object-fit: cover; }
.footer-mark span { display: grid; width: 38px; height: 38px; place-items: center; margin-left: -8px; border: 2px solid var(--page); border-radius: 50%; background: linear-gradient(135deg, var(--accent), #7d3cff); color: #fff; font-size: 18px; }
footer p { margin: 7px 0 0; color: #fff; font-weight: 700; }

.sheet[hidden] { display: none; }
.sheet { position: fixed; inset: 0; z-index: 25; display: grid; align-items: end; justify-items: center; padding: 18px 18px 0; }
.sheet-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(12px); cursor: default; }
.sheet-panel { position: relative; width: min(100%, var(--sheet-width)); max-height: min(var(--sheet-max-height), 720px); overflow: auto; padding: 10px 26px 25px; border: 1px solid rgba(255,255,255,.1); border-bottom: 0; border-radius: 28px 28px 0 0; background: #242424; box-shadow: 0 -22px 80px rgba(0,0,0,.52); animation: sheet-up .28s cubic-bezier(.2,.85,.3,1) both; }
@keyframes sheet-up { from { opacity: .4; transform: translateY(100%); } }
.sheet-handle { width: 44px; height: 5px; margin: 2px auto 17px; border-radius: 999px; background: #aaa; }
.sheet-heading { position: relative; margin-bottom: 16px; text-align: center; }
.sheet-heading h2 { margin: 0; font-size: 18px; }
.sheet-close { position: absolute; top: -8px; right: 0; display: grid; width: 32px; height: 32px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 22px; }
.follower-list { display: grid; gap: 3px; }
.follower-row { display: flex; align-items: center; gap: 15px; padding: 10px 8px; border-radius: 14px; text-decoration: none; transition: background .2s ease; }
.follower-row:hover { background: rgba(255,255,255,.06); }
.follower-avatar { position: relative; flex: 0 0 48px; }
.follower-avatar > img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.follower-network { position: absolute; right: -2px; bottom: -2px; display: grid; width: 20px; height: 20px; place-items: center; border: 2px solid #242424; border-radius: 50%; background: #fff; }
.follower-network img { width: 10px; height: 10px; }
.follower-copy { display: grid; gap: 2px; }
.follower-copy strong { font-size: 14px; }
.follower-copy > span { color: #9b999e; font-size: 13px; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 30; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(16px); }
.modal-card {
  position: relative;
  width: min(100%, 620px);
  padding: 34px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: radial-gradient(circle at 50% -30%, color-mix(in srgb, var(--accent) 40%, #31231f), #282523 48%, #101112 100%);
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
  text-align: center;
  animation: modal-in .25s ease both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }

.mature-lock { position: absolute; top: 22px; left: 22px; display: grid; width: 48px; height: 48px; place-items: center; border: 3px solid white; border-radius: 50%; background: #65b8f5; box-shadow: 0 0 0 3px #65b8f5; }
.mature-lock svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.eye-off { display: grid; place-items: center; margin-top: 15px; }
.eye-off svg { width: 42px; height: 42px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.modal-card h2 { margin: 18px 0 12px; font-size: clamp(21px, 5vw, 27px); }
.modal-card p { max-width: 420px; margin: 0 auto 28px; color: #f0ecef; font-size: clamp(17px, 4.5vw, 22px); line-height: 1.45; }
.continue-button { width: 100%; padding: 19px 22px; border: 0; border-radius: 999px; background: #fff; color: #050505; cursor: pointer; font-size: 19px; font-weight: 800; transition: transform .2s ease; }
.continue-button:hover { transform: scale(1.01); }
.cancel-button { margin-top: 14px; border: 0; background: transparent; color: rgba(255,255,255,.65); cursor: pointer; }
body.modal-open { overflow: hidden; }

@media (max-width: 520px) {
  .hero-card { height: var(--hero-height-mobile); min-height: 0; max-height: none; border-radius: var(--hero-radius); }
  .hero-content { inset-inline: 14px; bottom: var(--hero-content-bottom); }
  .social-rail { gap: var(--social-gap); overflow-x: auto; justify-content: var(--content-justify); margin-inline: 13px; padding: 0 2px 4px; scrollbar-width: none; }
  .social-rail::-webkit-scrollbar { display: none; }
  .social-link { flex: 0 0 var(--social-size); width: var(--social-size); height: var(--social-size); }
  .social-link img { width: calc(var(--social-size) * .48); height: calc(var(--social-size) * .48); }
  .link-grid { gap: var(--tile-gap); }
  .tile { min-height: var(--tile-height-mobile); border-radius: var(--tile-radius); }
  .tile:first-child { min-height: var(--featured-height-mobile); }
  .tile:first-child.disclaimer-active { min-height: max(var(--featured-height-mobile), var(--mature-height)); }
  .tile-label { font-size: 15px; }
  .gallery { gap: var(--gallery-gap); }
  .gallery-item { border-radius: min(var(--tile-radius), 18px); }
  .inline-disclaimer { padding: 38px 18px 22px; }
  .inline-disclaimer p { margin-bottom: 15px; }
  .inline-continue { padding: 13px 16px; }
  .lightbox { grid-template-columns: 1fr; padding: 12px; }
  .lightbox-figure { grid-column: 1; }
  .lightbox-figure img { max-height: calc(100vh - 70px); }
  .lightbox-nav { width: 38px; height: 38px; font-size: 29px; }
  .lightbox-previous { left: 9px; }
  .lightbox-next { right: 9px; }
  .sheet { padding-inline: 0; }
  .sheet-panel { padding-inline: 18px; border-radius: 24px 24px 0 0; }
  .modal-card { padding: 40px 20px 24px; border-radius: 24px; }
  .mature-lock { width: 40px; height: 40px; top: 18px; left: 18px; }
}

@media (min-width: 700px) {
  .desktop-backdrop { position: fixed; inset: 0; z-index: 0; display: block; overflow: hidden; background: var(--page); pointer-events: none; }
  .desktop-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-image-x) var(--hero-image-y); filter: blur(var(--backdrop-blur)) saturate(var(--backdrop-saturation)) brightness(var(--backdrop-brightness)); transform: scale(1.16); opacity: .95; }
  .desktop-backdrop span { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.56), rgba(0,0,0,.16) 45%, rgba(0,0,0,.48)), radial-gradient(circle at 12% 48%, rgba(25,47,255,var(--backdrop-blue-glow)), transparent 43%), radial-gradient(circle at 88% 48%, rgba(30,62,255,var(--backdrop-blue-glow)), transparent 43%); }
  .ambient { display: none; }
  .profile-shell { overflow: hidden; border-radius: var(--container-radius); background: var(--page); box-shadow: 0 0 80px rgba(0,0,0,.42); }
}

@media (max-width: 360px) {
  .hero-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
