:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f9f7ff;
  --text: #111018;
  --muted: #696576;
  --subtle: #9a96a8;
  --line: #e7e4ef;
  --line-strong: #d7d2e4;
  --pink: #ea4bb3;
  --pink-strong: #c82992;
  --violet: #6336f5;
  --cyan: #12a7b4;
  --amber: #ff9d43;
  --shadow: 0 18px 45px rgb(44 35 76 / 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 10px 20px rgb(234 75 179 / 0.18),
    inset 0 0 0 1px rgb(255 255 255 / 0.52);
}

.brand__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__text {
  white-space: nowrap;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--pink-strong);
}

main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
  padding: clamp(22px, 4vw, 42px) 0 14px;
}

.hero h1 {
  max-width: 620px;
  margin: 6px 0 10px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.45;
}

.eyebrow {
  margin: 0;
  color: var(--pink-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__search {
  align-self: end;
}

.filters {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.search-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px;
}

.search-main input {
  min-height: 48px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f3f2f8;
  color: var(--text);
  outline: none;
  padding: 0 14px;
}

.search-main input::placeholder {
  color: var(--subtle);
}

.search-main input:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgb(18 167 180 / 0.1);
}

.advanced-filters {
  border-top: 1px solid var(--line);
}

.advanced-filters summary {
  min-height: 42px;
  list-style: none;
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-weight: 850;
}

.advanced-filters summary::-webkit-details-marker {
  display: none;
}

.advanced-filters summary::after {
  content: "+";
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
}

.advanced-filters[open] summary::after {
  content: "-";
}

.advanced-filters__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.filter-field,
.toggle,
.filters__reset {
  min-width: 0;
  background: var(--surface);
}

.filter-field {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.filter-field label,
.toggle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select {
  min-height: 34px;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  padding: 0;
}

.filter-field:focus-within {
  box-shadow: inset 0 -2px 0 var(--cyan);
}

.toggle {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: 0 10px 22px rgb(234 75 179 / 0.22);
}

.button--primary:hover {
  filter: brightness(1.05);
}

.button--ghost {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--text);
}

.button--ghost:hover {
  border-color: var(--pink);
  color: var(--pink-strong);
}

.filters__submit {
  min-width: 120px;
  min-height: 48px;
}

.filters__reset {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
}

.quick-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 18px;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.quick-links::-webkit-scrollbar {
  display: none;
}

.quick-links a {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 0 14px;
  font-weight: 800;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: var(--pink);
  color: var(--pink-strong);
}

.results-section {
  padding: 4px 0 34px;
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

.results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.results-toolbar h2 {
  margin: 3px 0 0;
  color: var(--text);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.result-count {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.notice {
  margin-bottom: 14px;
  border: 1px solid #ffd08a;
  border-radius: var(--radius);
  background: #fff8e9;
  color: #754504;
  padding: 11px 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.performer-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgb(44 35 76 / 0.08);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.performer-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 36px rgb(44 35 76 / 0.14);
  transform: translateY(-2px);
}

.performer-card.skeleton {
  min-height: 318px;
  background:
    linear-gradient(90deg, transparent, rgb(234 75 179 / 0.09), transparent),
    var(--surface);
  background-size: 220% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}

@keyframes shimmer {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

.performer-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(234 75 179 / 0.18), rgb(18 167 180 / 0.15)),
    #edeaf7;
}

.performer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performer-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #716782;
  font-size: 42px;
  font-weight: 950;
}

.badge-row {
  position: absolute;
  inset: 9px 9px auto 9px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.badge {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  color: var(--text);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
}

.badge--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgb(18 167 180 / 0.14);
}

.performer-card__body {
  padding: 12px;
}

.performer-card h3 {
  overflow-wrap: anywhere;
  margin: 0 0 5px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.18;
}

.meta {
  display: flex;
  min-height: 20px;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.tag-list {
  display: flex;
  min-height: 27px;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #625b72;
  font-size: 11px;
  padding: 3px 7px;
}

.performer-card__stats {
  display: flex;
  min-height: 24px;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 10px;
}

.performer-card__stats span {
  border-radius: 999px;
  background: #f1f5ff;
  color: #4e4772;
  font-size: 11px;
  font-weight: 850;
  padding: 4px 7px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 7px;
}

.card-actions .button {
  min-height: 38px;
  padding: 0 8px;
  font-size: 13px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 0 0;
}

.pagination span {
  color: var(--muted);
  font-weight: 800;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) minmax(220px, 0.65fr);
  gap: 24px;
  margin: 8px 0 52px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.seo-section h2 {
  margin: 5px 0 9px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.seo-section h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.seo-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.seo-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  font-weight: 800;
  text-decoration: none;
}

.seo-links a:hover {
  border-color: var(--pink);
  color: var(--pink-strong);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 36px) 36px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
}

.content-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0;
}

.content-page h1 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.content-page h2 {
  margin: 30px 0 8px;
  font-size: 22px;
}

.content-page p {
  color: var(--muted);
  line-height: 1.7;
}

.content-page a {
  color: var(--pink-strong);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--pink-strong);
  text-decoration: none;
}

.profile-page {
  padding-bottom: 48px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  padding: clamp(22px, 5vw, 54px) 0 28px;
}

.profile-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgb(234 75 179 / 0.18), rgb(18 167 180 / 0.15)),
    #edeaf7;
  box-shadow: var(--shadow);
}

.profile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-summary h1 {
  overflow-wrap: anywhere;
  margin: 6px 0 10px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.profile-stats div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
}

.profile-stats strong,
.profile-stats span {
  display: block;
}

.profile-stats strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.05;
}

.profile-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.profile-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: 0 10px 24px rgb(44 35 76 / 0.06);
}

.profile-panel--wide {
  grid-column: 1 / -1;
}

.profile-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.profile-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  background: #fff;
  padding: 10px 12px;
}

.detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.tag-list--large {
  min-height: 0;
  margin-bottom: 0;
}

.tag-list--large span {
  font-size: 12px;
  padding: 5px 9px;
}

.profile-related {
  margin-top: 30px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(246 247 251 / 0.88);
  backdrop-filter: blur(18px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.age-gate__panel h1 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
}

.age-gate__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.age-gate__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.preview-modal {
  width: min(920px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}

.preview-modal::backdrop {
  background: rgb(17 16 24 / 0.56);
}

.preview-modal__header,
.preview-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.preview-modal__header h2 {
  overflow-wrap: anywhere;
  margin: 4px 0 0;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
}

.preview-frame {
  aspect-ratio: 16 / 9;
  border-block: 1px solid var(--line);
  background: #111;
}

.preview-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  padding: 34px;
  text-align: center;
}

@media (max-width: 1180px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .advanced-filters__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .profile-hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-section {
    grid-template-columns: 1fr 1fr;
  }

  .seo-section > div:first-child {
    grid-column: 1 / -1;
  }

  .profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 10px;
  }

  .site-nav {
    width: 100%;
  }

  main {
    width: min(100% - 20px, 1280px);
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .lede {
    font-size: 15px;
  }

  .search-main {
    grid-template-columns: 1fr;
  }

  .filters__submit {
    width: 100%;
  }

  .advanced-filters__grid,
  .grid,
  .seo-section {
    grid-template-columns: 1fr;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-count {
    text-align: left;
  }

  .age-gate__actions,
  .card-actions,
  .profile-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .age-gate__actions .button,
  .profile-actions .button {
    width: 100%;
  }

  .profile-stats,
  .detail-list div {
    grid-template-columns: 1fr;
  }
}
