:root {
  color-scheme: dark;
  --ink: #f8fcff;
  --muted: #b5c5d0;
  --blue: #15c2f4;
  --blue-light: #8aeaff;
  --night: #071725;
  --glass: rgba(12, 34, 51, 0.82);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 20px;
  background:
    radial-gradient(circle at 50% -12%, rgba(30, 196, 242, 0.16), transparent 44%),
    linear-gradient(145deg, #081a2a 0%, #06121f 54%, #081724 100%);
}

.page-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 1;
  background: radial-gradient(ellipse at center, transparent 32%, rgba(1, 7, 13, 0.38) 100%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: min(46vw, 530px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.16;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient--one { top: -17%; left: -16%; background: #007eb9; }
.ambient--two { right: -18%; bottom: -24%; background: #00c7ff; animation-delay: -7s; }

.card {
  width: min(100%, 420px);
  padding: 38px 30px 28px;
  text-align: center;
  border: 1px solid rgba(161, 229, 250, 0.15);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 49, 68, 0.77), var(--glass));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.photo-wrap {
  position: relative;
  width: 152px;
  height: 152px;
  margin: 0 auto 27px;
}

.photo-wrap::before {
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: linear-gradient(145deg, #a0efff, #00a7de 56%, #0878a7);
}

.model-photo {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #0a1c2a;
  border-radius: 50%;
  object-fit: cover;
  background: #12334a;
}

.online-dot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 19px;
  height: 19px;
  border: 3px solid #0a1c2a;
  border-radius: 50%;
  background: #4cf0b4;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 8vw, 2.78rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 337px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.onlyfans-button {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 74px;
  padding: 11px 17px 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 17px;
  color: #05253a;
  text-decoration: none;
  text-align: left;
  background: linear-gradient(135deg, #83eaff 0%, #2dcaf5 43%, #00a5dc 100%);
  box-shadow: 0 12px 26px rgba(0, 177, 232, 0.2), inset 0 1px rgba(255, 255, 255, 0.66);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.onlyfans-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.045);
  box-shadow: 0 16px 31px rgba(0, 177, 232, 0.29), inset 0 1px rgba(255, 255, 255, 0.7);
}

.onlyfans-button:active { transform: translateY(-1px) scale(0.99); }

.onlyfans-button:focus-visible {
  outline: 3px solid white;
  outline-offset: 4px;
}

.of-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border: 1px solid rgba(2, 63, 92, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
}

.of-mark svg {
  width: 31px;
  fill: none;
  stroke: #087eaa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.of-copy { display: grid; gap: 3px; flex: 1; }
.of-copy strong { font-size: 1.21rem; letter-spacing: -0.035em; }
.of-copy small { font-size: 0.77rem; font-weight: 650; opacity: 0.73; }
.arrow { font-size: 1.65rem; font-weight: 300; line-height: 1; }

.note {
  margin: 23px 0 0;
  color: rgba(189, 207, 220, 0.67);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes drift { to { transform: translate3d(23px, 18px, 0) scale(1.05); } }

@media (max-width: 380px) {
  .page-shell { padding: 18px 13px; }
  .card { padding: 31px 21px 24px; border-radius: 24px; }
  .photo-wrap { width: 132px; height: 132px; margin-bottom: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .onlyfans-button { transition: none; }
}
