:root {
  color-scheme: dark;
  --bg: #09050e;
  --surface: #14091f;
  --surface-strong: #1e0d2c;
  --text: #fff8ff;
  --muted: #cdbdd5;
  --primary: #d946ef;
  --secondary: #8b5cf6;
  --accent: #ff4fa3;
  --highlight: #f5c2ff;
  --pornhub: #ffb000;
  --safe-top: max(18px, env(safe-area-inset-top));
  --safe-bottom: max(22px, env(safe-area-inset-bottom));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, color-mix(in srgb, var(--secondary) 28%, transparent), transparent 42%),
    linear-gradient(165deg, #0e0714 0%, var(--bg) 48%, #060308 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { font: inherit; }

.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; }
.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.ambient__orb { position: absolute; border-radius: 50%; filter: blur(28px); opacity: .32; animation: drift 15s ease-in-out infinite alternate; }
.ambient__orb--one { width: 340px; height: 340px; left: -140px; top: 8%; background: var(--primary); }
.ambient__orb--two { width: 440px; height: 440px; right: -220px; top: 34%; background: var(--secondary); animation-delay: -6s; }
.ambient__orb--three { width: 300px; height: 300px; left: 30%; bottom: -180px; background: var(--accent); animation-delay: -10s; }
.ambient__decor {
  position: absolute;
  opacity: .14;
  mix-blend-mode: screen;
  filter: sepia(1) saturate(2.4) hue-rotate(218deg) brightness(.94) drop-shadow(0 0 20px color-mix(in srgb, var(--primary) 62%, transparent));
  animation: decorFloat 18s ease-in-out infinite alternate;
}
.ambient__decor--heel { width: min(48vw, 390px); top: 5%; left: -17%; transform: rotate(-18deg); }
.ambient__decor--cuffs { width: min(44vw, 360px); right: -15%; top: 37%; transform: rotate(18deg); animation-delay: -8s; }
.ambient__decor--mask { width: min(34vw, 255px); left: 5%; bottom: -8%; transform: rotate(-12deg); animation-delay: -13s; }

.particles { position: absolute; inset: 0; }
.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px var(--highlight);
  opacity: 0;
  animation: twinkle var(--duration) ease-in-out var(--delay) infinite;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin: 0 auto;
  padding: var(--safe-top) 14px var(--safe-bottom);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.page-shell.is-visible { opacity: 1; transform: none; }

.profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(30, 13, 44, .92), rgba(10, 5, 15, .94));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(135%);
}

.hero {
  position: relative;
  min-height: clamp(330px, 56vh, 440px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); animation: heroBreath 16s ease-in-out infinite alternate; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,3,11,.05) 12%, rgba(9,4,15,.18) 48%, rgba(9,4,15,.93) 100%), linear-gradient(90deg, rgba(8,3,12,.50), transparent 75%); }
.hero__grid { position: absolute; inset: 0; opacity: .18; background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,.20) 26%, transparent 27%) 0 0 / 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding: 26px 24px 30px; }
.hero__topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.eyebrow { display: block; color: var(--highlight); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 18vw, 7rem);
  font-weight: 500;
  font-style: italic;
  line-height: .88;
  letter-spacing: -.065em;
  text-shadow: 0 0 25px color-mix(in srgb, var(--primary) 65%, transparent), 0 4px 18px rgba(0,0,0,.8);
  animation: titlePulse 4.4s ease-in-out infinite;
}
.hero p { max-width: 480px; margin: 15px 0 0; color: rgba(255,255,255,.84); font-size: clamp(.94rem, 3.5vw, 1.06rem); line-height: 1.55; }
.status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(4,2,8,.45); color: rgba(255,255,255,.88); font-size: .72rem; font-weight: 700; backdrop-filter: blur(10px); }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #64ff9c; box-shadow: 0 0 10px #64ff9c; animation: statusPulse 2s ease-in-out infinite; }

.content-wrap { position: relative; padding: 0 14px 21px; }
.content-wrap::before { content: ""; position: absolute; left: 0; right: 0; top: -50px; height: 90px; background: linear-gradient(to bottom, transparent, rgba(9,4,15,.96)); pointer-events: none; }

.featured-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  min-height: 194px;
  margin: -9px 0 14px;
  overflow: hidden;
  padding: 24px 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, white 10%);
  border-radius: var(--radius-lg);
  text-decoration: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.14), transparent 24%),
    linear-gradient(135deg, rgba(255,79,163,.23), rgba(139,92,246,.16) 55%, rgba(12,6,18,.92));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 0 30px color-mix(in srgb, var(--accent) 22%, transparent);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.featured-card:hover { transform: translateY(-2px); border-color: var(--highlight); box-shadow: 0 15px 40px rgba(0,0,0,.32), 0 0 36px color-mix(in srgb, var(--accent) 33%, transparent); }
.featured-card:active { transform: scale(.988); }
.featured-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 24px 24px; opacity: .5; }
.featured-card__shine { position: absolute; width: 70%; height: 260%; left: -120%; top: -80%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: rotate(18deg); animation: shimmer 6.5s ease-in-out infinite; }
.featured-card__copy { position: relative; z-index: 2; align-self: center; }
.featured-card__eyebrow { color: var(--highlight); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.featured-card h2 { margin: 9px 0 7px; max-width: 320px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 6vw, 2.1rem); font-weight: 500; line-height: 1.03; }
.featured-card p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.45; }
.featured-card__action { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: white; font-size: .79rem; font-weight: 800; }
.featured-card__action svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.featured-card:hover .featured-card__action svg { transform: translateX(4px); }
.featured-card__gem { position: relative; z-index: 1; display: grid; place-items: center; align-self: center; }
.featured-card__gem svg { width: 108px; overflow: visible; filter: drop-shadow(0 0 14px color-mix(in srgb, var(--primary) 70%, transparent)); animation: gemFloat 4s ease-in-out infinite; }
.featured-card__gem path:first-child { fill: rgba(217,70,239,.23); stroke: var(--highlight); stroke-width: 2; }
.featured-card__gem path:last-child { fill: none; stroke: rgba(255,255,255,.50); stroke-width: 1.3; }
.featured-card.has-image .featured-card__gem { background-position: center; background-size: cover; border-radius: 18px; min-height: 130px; }
.featured-card.has-image .featured-card__gem svg { display: none; }

.link-list { display: grid; gap: 10px; }
.link-card {
  --link-accent: var(--secondary);
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  overflow: hidden;
  padding: 11px 14px 11px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--link-accent) 18%, transparent), transparent 26%),
    linear-gradient(115deg, color-mix(in srgb, var(--link-accent) 9%, rgba(255,255,255,.04)), rgba(255,255,255,.035));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 8px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.link-card::before { content: ""; position: absolute; left: 0; top: 15%; bottom: 15%; width: 2px; border-radius: 2px; background: var(--link-accent); box-shadow: 0 0 12px var(--link-accent); }
.link-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--link-accent) 55%, white 12%); box-shadow: inset 0 1px rgba(255,255,255,.08), 0 12px 26px rgba(0,0,0,.25), 0 0 20px color-mix(in srgb, var(--link-accent) 14%, transparent); }
.link-card:active { transform: scale(.988); }
.link-card.is-missing { opacity: .58; cursor: not-allowed; }
.link-card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: white; background: linear-gradient(145deg, color-mix(in srgb, var(--link-accent) 92%, white 8%), color-mix(in srgb, var(--link-accent) 55%, #08040d)); box-shadow: inset 0 1px rgba(255,255,255,.35), 0 0 18px color-mix(in srgb, var(--link-accent) 26%, transparent); }
.link-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.link-card__copy { min-width: 0; }
.link-card__title { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 1rem; font-weight: 800; letter-spacing: -.01em; }
.link-card__subtitle { display: block; overflow: hidden; margin-top: 4px; color: var(--muted); font-size: .78rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.link-card__right { display: flex; align-items: center; gap: 8px; }
.link-card__badge { max-width: 86px; overflow: hidden; padding: 5px 7px; border: 1px solid color-mix(in srgb, var(--link-accent) 50%, white 8%); border-radius: 999px; color: color-mix(in srgb, var(--link-accent) 70%, white 30%); font-size: .57rem; font-weight: 900; letter-spacing: .06em; text-overflow: ellipsis; white-space: nowrap; }
.link-card__arrow { width: 20px; height: 20px; fill: none; stroke: rgba(255,255,255,.82); stroke-width: 1.8; transition: transform .2s ease; }
.link-card:hover .link-card__arrow { transform: translateX(3px); }
.link-card--pornhub { --link-accent: var(--pornhub); }
.link-card--primary { --link-accent: var(--primary); }
.link-card--secondary { --link-accent: var(--secondary); }
.link-card--accent { --link-accent: var(--accent); }
.link-card--coming-soon { cursor: not-allowed; opacity: .72; }
.link-card--coming-soon:hover { transform: none; border-color: rgba(255,255,255,.13); box-shadow: inset 0 1px rgba(255,255,255,.06), 0 8px 18px rgba(0,0,0,.18); }

.footer { padding: 23px 6px 4px; text-align: center; }
.trust-note { display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--muted); font-size: .77rem; line-height: 1.4; }
.trust-note svg { flex: 0 0 auto; width: 18px; fill: none; stroke: var(--highlight); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer p { margin: 10px 0 0; color: rgba(255,255,255,.37); font-size: .67rem; }
.footer__links a { color: var(--muted); text-underline-offset: 3px; transition: color .2s ease; }
.footer__links a:hover { color: var(--highlight); }

.privacy-shell { width: min(100%, 760px); }
.privacy-card { overflow: hidden; }
.privacy-hero { position: relative; padding: 34px 28px 28px; background: radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 42%), linear-gradient(145deg, rgba(40,16,54,.92), rgba(12,6,18,.94)); border-bottom: 1px solid rgba(255,255,255,.09); }
.privacy-hero h1 { margin: 12px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 10vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.privacy-hero p { max-width: 580px; margin: 0; color: var(--muted); line-height: 1.6; }
.privacy-back { display: inline-flex; margin-bottom: 26px; color: var(--highlight); font-size: .78rem; font-weight: 800; text-decoration: none; }
.privacy-content { padding: 26px 28px 34px; }
.privacy-content section { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.privacy-content section:first-of-type { padding-top: 8px; }
.privacy-content h2 { margin: 0 0 11px; font-size: 1.16rem; }
.privacy-content h3 { margin: 20px 0 7px; color: var(--highlight); font-size: .92rem; }
.privacy-content p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.72; }
.privacy-content a { color: var(--highlight); }
.privacy-content code { padding: 2px 6px; border: 1px solid rgba(255,255,255,.10); border-radius: 7px; color: var(--highlight); background: rgba(255,255,255,.05); }
.privacy-notice { margin-bottom: 18px; padding: 14px 16px; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); border-radius: 14px; color: var(--muted); background: color-mix(in srgb, var(--accent) 8%, transparent); font-size: .8rem; line-height: 1.55; }
.privacy-home { display: grid; place-items: center; margin-top: 28px; color: white !important; text-decoration: none; }

@media (max-width: 480px) {
  .privacy-hero, .privacy-content { padding-left: 20px; padding-right: 20px; }
}

.age-gate { position: fixed; z-index: 20; inset: 0; display: grid; place-items: center; padding: 18px; opacity: 1; visibility: visible; transition: opacity .45s ease, visibility .45s ease; }
.age-gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate__backdrop { position: absolute; inset: 0; background: rgba(4,2,7,.84); backdrop-filter: blur(20px) saturate(130%); }
.age-gate__panel { position: relative; width: min(100%, 430px); overflow: hidden; padding: 36px 26px 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; text-align: center; background: linear-gradient(145deg, rgba(35,14,49,.96), rgba(11,5,17,.97)); box-shadow: 0 30px 100px rgba(0,0,0,.66), 0 0 60px color-mix(in srgb, var(--primary) 18%, transparent), inset 0 1px rgba(255,255,255,.08); }
.age-gate__panel::before { content: ""; position: absolute; inset: 0; opacity: .20; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 25px 25px; }
.age-gate__halo { position: absolute; width: 250px; height: 250px; top: -145px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: var(--primary); filter: blur(65px); opacity: .34; }
.age-gate__badge { position: relative; display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 20px; border: 1px solid var(--highlight); border-radius: 50%; font-family: Georgia, serif; font-size: 1.85rem; box-shadow: 0 0 25px color-mix(in srgb, var(--primary) 45%, transparent), inset 0 0 20px rgba(255,255,255,.05); }
.age-gate h2 { position: relative; margin: 10px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.05rem, 9vw, 2.8rem); font-weight: 500; line-height: .98; }
.age-gate p { position: relative; margin: 0 auto; max-width: 330px; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.age-gate__actions { position: relative; display: grid; gap: 10px; margin-top: 25px; }
.button { min-height: 52px; border-radius: 16px; cursor: pointer; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:active { transform: scale(.98); }
.button--primary { border: 1px solid var(--highlight); color: white; background: linear-gradient(90deg, var(--primary), var(--secondary)); box-shadow: 0 0 25px color-mix(in srgb, var(--primary) 36%, transparent); }
.button--primary:hover { box-shadow: 0 0 34px color-mix(in srgb, var(--primary) 55%, transparent); }
.button--ghost { border: 1px solid rgba(255,255,255,.15); color: var(--muted); background: rgba(255,255,255,.035); }
.button--ghost:hover { border-color: rgba(255,255,255,.30); color: white; }
.age-gate small { position: relative; display: block; margin-top: 18px; color: rgba(255,255,255,.39); font-size: .64rem; line-height: 1.45; }

.toast { position: fixed; z-index: 40; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom)); width: max-content; max-width: calc(100vw - 28px); padding: 11px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: white; background: rgba(18,8,26,.92); box-shadow: 0 15px 35px rgba(0,0,0,.35); backdrop-filter: blur(18px); font-size: .78rem; opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@keyframes drift { to { transform: translate3d(35px, 28px, 0) scale(1.08); } }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.5); } 42% { opacity: .75; transform: scale(1); } 54% { opacity: .2; } 65% { opacity: .9; transform: scale(.75); } }
@keyframes heroBreath { from { transform: scale(1.02); } to { transform: scale(1.075) translateY(-3px); } }
@keyframes statusPulse { 50% { opacity: .55; transform: scale(.8); } }
@keyframes shimmer { 0%, 54% { left: -120%; } 72%, 100% { left: 150%; } }
@keyframes gemFloat { 50% { transform: translateY(-7px) rotate(1.5deg); } }
@keyframes decorFloat { to { translate: 14px -18px; rotate: 3deg; } }
@keyframes titlePulse { 50% { text-shadow: 0 0 42px color-mix(in srgb, var(--accent) 78%, transparent), 0 4px 18px rgba(0,0,0,.8); } }

@media (min-width: 700px) {
  .page-shell { padding-top: 36px; padding-bottom: 36px; }
  .content-wrap { padding-left: 20px; padding-right: 20px; padding-bottom: 26px; }
  .featured-card { padding: 28px 25px; grid-template-columns: minmax(0, 1fr) 145px; }
  .featured-card__gem svg { width: 126px; }
}

@media (max-width: 390px) {
  .page-shell { padding-left: 8px; padding-right: 8px; }
  .profile-card { border-radius: 27px; }
  .hero__content { padding-left: 20px; padding-right: 20px; }
  .featured-card { grid-template-columns: minmax(0, 1fr) 84px; padding: 21px 17px; }
  .featured-card__gem svg { width: 86px; }
  .link-card { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; padding-left: 10px; }
  .link-card__icon { width: 47px; height: 47px; border-radius: 14px; }
  .link-card__badge { display: none; }
}

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