:root {
  color-scheme: dark;
  --bg: #111111;
  --panel: #151514;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --soft: rgba(255, 255, 255, .12);
  --button: #fbfbf8;
  --button-text: #151515;
  --accent: #6d8fad;
  --gold: #d3a75d;
  --max-page: 520px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #0f0f0f;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, #0b0b0b 0%, #171716 35%, #101010 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.bridge-shell {
  width: 100%;
  max-width: var(--max-page);
  min-height: 100svh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, #101010 0%, #090909 62%, #0c0c0b 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.bridge-shell.is-visible {
  opacity: 1;
  transform: none;
}

.hero {
  position: relative;
  min-height: clamp(420px, 58svh, 570px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: calc(env(safe-area-inset-top, 0px) + 24px) 22px 48px;
  background: #1f1e1d;
  border-radius: 0;
  box-shadow: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, .76) 62%, #090909 100%);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #232323;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .1) 42%, rgba(0, 0, 0, .68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .14));
}

.identity {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  position: relative;
  z-index: 2;
}

.identity h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 9vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.identity p {
  margin: 10px auto 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 4vw, 1.15rem);
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .55);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 260px;
  margin: 0 auto 12px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-panel {
  position: relative;
  z-index: 3;
  padding: 17px 22px 16px;
  background: linear-gradient(180deg, #090909 0%, #090909 100%);
}

.button-stack {
  display: grid;
  gap: 11px;
  width: min(100%, 390px);
  margin: 0 auto;
}

.bridge-button {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 20px 0 17px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #f8f8f5;
  color: #151515;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}

.bridge-button::before {
  content: none;
}

.bridge-button:focus-visible,
.age-button:focus-visible {
  outline: 3px solid rgba(109, 143, 173, .9);
  outline-offset: 3px;
}

.bridge-button:active {
  transform: scale(.985);
}

.bridge-button__icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #333;
}

.bridge-button__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.bridge-button__icon--fanvue {
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.bridge-button__icon--fanvue svg {
  width: 31px;
  height: 31px;
  fill: #3f3f3f;
  stroke: none;
}

.bridge-button__icon svg,
.age-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bridge-button__icon--telegram,
.bridge-button__icon--telegram-chat {
  width: 34px;
  height: 34px;
  background: #229ed9;
  box-shadow: 0 7px 14px rgba(34, 158, 217, .24);
}

.bridge-button__icon--telegram svg,
.bridge-button__icon--telegram-chat svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  stroke: none;
}

.bridge-button__icon--telegram-chat::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 20px;
  height: 20px;
  border: 2px solid #229ed9;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
  background-image:
    radial-gradient(circle, #229ed9 0 1.6px, transparent 1.8px),
    radial-gradient(circle, #229ed9 0 1.6px, transparent 1.8px),
    radial-gradient(circle, #229ed9 0 1.6px, transparent 1.8px);
  background-position: 5px 10px, 10px 10px, 15px 10px;
  background-repeat: no-repeat;
  background-size: 3px 3px;
}

.bridge-button__copy {
  display: grid;
  min-width: 0;
}

.bridge-button__label {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.02rem, 4.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.bridge-button__subtitle {
  display: none;
}

.bridge-button__chevron {
  display: none;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 10px 18px calc(env(safe-area-inset-bottom, 0px) + 30px);
  color: rgba(255, 255, 255, .48);
  font-size: .83rem;
  line-height: 1.4;
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:focus-visible,
.site-footer a:hover {
  color: rgba(255, 255, 255, .78);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  justify-items: center;
  align-items: start;
  min-height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #1d1d1b;
  color: #fff;
  opacity: 1;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}

.age-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-gate__inner {
  width: 100%;
  max-width: var(--max-page);
  padding: calc(env(safe-area-inset-top, 0px) + 110px) 28px 42px;
  text-align: center;
}

.age-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  color: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24), 0 1px 0 rgba(255, 255, 255, .16) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate h2 {
  max-width: 100%;
  margin: 0 auto;
  overflow-wrap: normal;
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.age-title-break {
  display: block;
}

.age-gate p {
  margin: 22px auto 30px;
  max-width: 20rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 4vw, 1.18rem);
  line-height: 1.45;
}

.age-button {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.age-button--primary {
  border: 1px solid rgba(255, 255, 255, .72);
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18), 0 1px 0 rgba(255, 255, 255, .16) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-button--primary:active {
  transform: scale(.99);
}

.age-button--secondary {
  margin-top: 26px;
  color: rgba(255, 255, 255, .95);
}

.noscript {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 30;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: #161616;
  color: #fff;
  text-align: center;
}

@media (hover: hover) {
  .social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
  }

  .bridge-button:hover {
    transform: translateY(-1px);
    background: #fff;
    box-shadow: 0 17px 32px rgba(0, 0, 0, .22);
  }
}

@media (min-width: 480px) {
  .site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
  }

  .age-title-break {
    display: inline;
  }
}

@media (min-width: 680px) {
  body {
    padding: 20px 0;
  }

  .bridge-shell {
    min-height: calc(100svh - 40px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  }

  .hero {
    min-height: 560px;
  }
}

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