:root {
  --creator-bg: #0a0a0a;
  --creator-panel: #1a1a1a;
  --creator-panel-soft: #202020;
  --creator-ink: #fff;
  --creator-muted: #aaa;
  --creator-faint: #666;
  --creator-blush: #e49bae;
  --creator-blush-strong: #f0a4b9;
  --creator-shell: 1480px;
  --creator-font: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

::selection { background: var(--creator-blush); color: #151015; }

.up-page-body,
.artist-page-body,
.artist-gallery-page-body {
  min-height: 100vh;
  background: var(--creator-bg);
  color: var(--creator-ink);
  color-scheme: dark;
  font-family: var(--creator-font);
}

.artist-page-body {
  background: linear-gradient(180deg, rgba(228, 155, 175, .2) 0, rgba(228, 155, 174, 0) 583px), var(--creator-bg);
}

/* Shared creator video player. The UP page and artist pages use the same modal markup. */
.artist-player-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.artist-player-modal[hidden] { display: none; }

.artist-player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.artist-player-dialog {
  position: relative;
  width: min(800px, 100%, calc(177.7778vh - 227.56px));
  overflow: hidden;
  border: 0;
  background: #030405;
  box-shadow: none;
  animation: artist-player-in .2s ease-out;
}

@keyframes artist-player-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
}

.artist-player-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
}

.artist-player-close svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.artist-player-stage { position: relative; aspect-ratio: 16 / 9; background: #000; }
.artist-player-stage video { display: block; width: 100%; height: 100%; background: #000; object-fit: contain; }

.artist-player-toggle[hidden],
.artist-player-controls[hidden] { display: none !important; }

.artist-player-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: block;
  width: 56px;
  height: 56px;
  padding: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: opacity .16s ease;
  -webkit-backdrop-filter: blur(4.17px);
  backdrop-filter: blur(4.17px);
}

.artist-player-toggle img { display: block; width: 56px; height: 56px; }
.artist-player-toggle-pause { display: none !important; }
.artist-player-stage.is-playing .artist-player-toggle-play { display: none; }
.artist-player-stage.is-playing .artist-player-toggle-pause { display: block !important; }
.artist-player-stage.is-playing .artist-player-toggle { opacity: 0; pointer-events: none; }
.artist-player-stage.is-playing .artist-player-toggle:focus-visible { opacity: 1; pointer-events: auto; }

.artist-player-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 10px;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
}

.artist-player-controls time {
  flex: 0 0 auto;
  min-width: 28px;
  font-variant-numeric: tabular-nums;
}

.artist-player-controls time:last-child { text-align: right; }

.artist-player-progress {
  --played: 0%;
  width: 100%;
  min-width: 0;
  height: 3px;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: linear-gradient(90deg, #c98a2c 0%, #ffb958 100%) 0 0 / var(--played) 100% no-repeat, #999;
  cursor: pointer;
}

.artist-player-progress::-webkit-slider-runnable-track { height: 3px; border-radius: 999px; background: transparent; }
.artist-player-progress::-webkit-slider-thumb { width: 8px; height: 8px; margin-top: -2.5px; appearance: none; border: 0; border-radius: 50%; background: #ffb958; }
.artist-player-progress::-moz-range-track { height: 3px; background: transparent; }
.artist-player-progress::-moz-range-progress { height: 3px; background: linear-gradient(90deg, #c98a2c 0%, #ffb958 100%); }
.artist-player-progress::-moz-range-thumb { width: 8px; height: 8px; border: 0; border-radius: 50%; background: #ffb958; }

.artist-player-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .45);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  pointer-events: none;
}

.artist-player-loading[hidden] { display: none; }

.artist-player-footer {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-top: 1px solid #302d2e;
  background: #171516;
}

.artist-player-footer > div { min-width: 0; }
.artist-player-footer strong { display: block; color: #fff; font-size: 18px; font-weight: 570; line-height: 1.4; }
.artist-player-footer small { display: block; margin-top: 8px; color: #858183; font-size: 12px; line-height: 1.5; }

.artist-player-download {
  display: inline-flex;
  flex-shrink: 0;
  width: 156px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(100deg, #efa8c0, #e584a7);
  color: #191315;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.artist-player-download:hover { color: #191315; filter: brightness(1.05); }
.artist-player-download:focus-visible { outline: 3px solid rgba(228, 155, 174, .9); outline-offset: 3px; }

.up-page,
.artist-page,
.artist-gallery-page { min-height: 70vh; background: var(--creator-bg); }

.up-page-body .home-site-header,
.artist-page-body .home-site-header,
.artist-gallery-page-body .home-site-header {
  position: relative;
  z-index: 100;
  height: 80px;
  padding-top: 0;
  border: 0;
  background: linear-gradient(112deg, #2d1a21 0%, #191114 58%, #090909 100%);
}

.up-page-body .home-nav,
.artist-page-body .home-nav,
.artist-gallery-page-body .home-nav { margin-top: 0; }

.artist-page-body .home-site-header,
.artist-page-body .artist-page { background: transparent; }

.creator-flow,
.artist-experience,
.artist-gallery-experience { overflow: clip; background: var(--creator-bg); }

.artist-page-body .artist-experience { background: transparent; }

.creator-shell {
  width: min(calc(100% - 64px), var(--creator-shell));
  margin-inline: auto;
}

.creator-headliners { padding: 112px 0 128px; }
.creator-hot,
.creator-directory,
.creator-series,
.artist-photo-strip,
.artist-work-section { padding: 78px 0 126px; }

.creator-hot,
.artist-photo-strip { border-top: 1px solid rgba(255, 255, 255, .04); }

.creator-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.creator-section-title > div { min-width: 0; }
.creator-section-title h1,
.creator-section-title h2 {
  color: var(--creator-ink);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.creator-section-title > div > span {
  display: block;
  margin-top: 11px;
  color: var(--creator-blush);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
}

.creator-section-title > a,
.creator-section-title > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--creator-muted);
  font-size: 15px;
}

.creator-section-title > a:hover { color: var(--creator-ink); }
.creator-section-title > a svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.2; }

.creator-card-carousel,
.creator-hot-stage { position: relative; }

.creator-card-viewport,
.creator-hot-viewport { overflow: hidden; }

.creator-card-track,
.creator-hot-track {
  display: flex;
  gap: 38px;
  transform: translate3d(0, 0, 0);
  transition: transform .52s cubic-bezier(.22, 1, .36, 1);
}

.creator-profile-card {
  flex: 0 0 calc((100% - 114px) / 4);
  min-width: 0;
  padding: 14px 14px 24px;
  border-radius: 16px;
  background: var(--creator-panel);
  color: var(--creator-ink);
}

.creator-profile-image {
  display: block;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border-radius: 12px;
  background: #333;
}

.creator-profile-image img,
.creator-hot-card > img,
.creator-work-card img,
.creator-series-card > img,
.artist-hero-image img,
.artist-photo-grid img,
.artist-gallery-photo img { width: 100%; height: 100%; object-fit: cover; }

.creator-profile-card h2 { margin-top: 19px; font-size: 18px; font-weight: 650; text-align: center; }
.creator-profile-card p { margin-top: 11px; color: var(--creator-muted); font-size: 13px; text-align: center; }
.creator-profile-card ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 13px; }
.creator-profile-card li { color: #aaa; font-size: 12px; }
.creator-profile-card li + li::before { content: "·"; margin-right: 7px; color: #555; }

.creator-profile-card:hover .creator-profile-image img,
.creator-work-card:hover img,
.creator-hot-card:hover > img,
.creator-series-card:hover > img { transform: scale(1.035); }

.creator-profile-card img,
.creator-work-card img,
.creator-hot-card > img,
.creator-series-card > img { transition: transform .5s cubic-bezier(.22, 1, .36, 1); }

.creator-carousel-arrow,
.creator-hot-arrow,
.photo-viewer-arrow {
  display: grid;
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: #0d0d0d;
  color: #fff;
}

.creator-carousel-arrow { top: 45%; transform: translateY(-50%); }
.creator-carousel-arrow.is-prev { left: -82px; }
.creator-carousel-arrow.is-next { right: -82px; }
.creator-carousel-arrow svg,
.creator-hot-arrow svg,
.photo-viewer-arrow svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.creator-carousel-arrow:disabled,
.creator-hot-arrow:disabled { cursor: default; opacity: .25; }

.creator-mobile-more,
.creator-work-more {
  display: none;
  width: 100%;
  height: 46px;
  margin-top: 20px;
  border-radius: 12px;
  background: #3b3b3b;
  color: #fff;
  font-size: 14px;
}
.creator-mobile-more[hidden],
.creator-work-more[hidden] { display: none; }

.creator-hot {
  width: 100%;
  max-width: none;
  padding: 80px max(32px, calc((100% - var(--creator-shell)) / 2));
  background: #111;
}
.creator-hot .creator-section-title { height: 80px; margin-bottom: 40px; }
.creator-hot-stage { height: 507px; }
.creator-hot-viewport,
.creator-hot-track { position: relative; width: 100%; height: 100%; overflow: visible; }
.creator-hot-track { display: block; transform: none !important; }
.creator-hot-card {
  display: grid;
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 0;
  width: min(732px, 49.46%);
  height: 412px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.96);
  transition: left .52s cubic-bezier(.22, 1, .36, 1), width .52s cubic-bezier(.22, 1, .36, 1), height .52s cubic-bezier(.22, 1, .36, 1), top .52s cubic-bezier(.22, 1, .36, 1), opacity .52s ease, transform .52s cubic-bezier(.22, 1, .36, 1);
  border-radius: 36px;
  background: #333;
  color: #fff;
}
.creator-hot-card.is-previous,
.creator-hot-card.is-next { z-index: 1; opacity: .2; transform: translateX(-50%) scale(1); }
.creator-hot-card.is-previous { left: calc(50% - 183px); }
.creator-hot-card.is-next { left: calc(50% + 183px); }
.creator-hot-card.is-active {
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(900px, 60.81%);
  height: 507px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.creator-hot-card::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, .85)); }
.creator-hot-card > span { position: absolute; z-index: 1; right: 28px; bottom: 24px; left: 28px; }
.creator-hot-card strong { display: block; overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.creator-hot-card small { display: block; margin-top: 7px; color: #c8c8c8; font-size: 12px; }
.creator-hot-arrow { top: 50%; transform: translateY(-50%); }
.creator-hot-arrow.is-prev { left: -76px; }
.creator-hot-arrow.is-next { right: -76px; }
.creator-hot-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.creator-hot-dots button { width: 8px; height: 8px; border-radius: 50%; background: #666; }
.creator-hot-dots button.active { width: 20px; border-radius: 999px; background: var(--creator-blush); }

.creator-directory-head { margin-bottom: 40px; }
.creator-title-lockup {
  position: relative;
  width: 196px;
  min-height: 80px;
  isolation: isolate;
}
.creator-title-lockup h1,
.creator-title-lockup h2,
.creator-section-title > .creator-title-lockup > span { position: relative; z-index: 1; padding-left: 6px; }
.creator-section-title > .creator-title-lockup > span { margin-top: 15px; }
.creator-work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 24px; }
.creator-work-pagination[hidden] { display: none; }
.creator-work-card { min-width: 0; }
.creator-work-card[hidden] { display: none; }
.creator-work-card a { display: block; color: #fff; }
.creator-work-card a > span { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; background: #333; }
.creator-work-card h3 { margin-top: 12px; overflow: hidden; font-size: 15px; font-weight: 600; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.creator-work-card p { margin-top: 6px; color: #777; font-size: 12px; }
.creator-filter-empty,
.creator-empty { padding: 76px 20px; color: #888; text-align: center; }

.creator-series-list { display: grid; gap: 30px; }
.creator-series-card { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); min-height: 330px; overflow: hidden; border-radius: 16px; background: var(--creator-panel); color: #fff; }
.creator-series-card > span { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.creator-series-card em { align-self: flex-start; margin-bottom: 24px; padding: 8px 13px; border-radius: 8px; background: var(--creator-blush); color: #25171d; font-size: 12px; font-style: normal; font-weight: 700; }
.creator-series-card strong { font-size: 30px; line-height: 1.18; }
.creator-series-card small { margin-top: 14px; color: #aaa; font-size: 14px; line-height: 1.8; }

.artist-breadcrumb { display: flex; gap: 8px; padding-top: 134px; color: var(--creator-muted); font-size: 18px; font-weight: 500; line-height: 23px; }
.artist-breadcrumb a:hover { color: var(--creator-blush); }
.artist-breadcrumb em { color: #aaa; font-style: normal; }
.artist-hero { display: grid; width: 1480px; height: 600px; grid-template-columns: 750px 621px; align-items: center; gap: 50px; margin-top: 80px; overflow: hidden; border-radius: 40px; background: var(--creator-panel); }
.artist-hero-image { width: 750px; height: 600px; min-width: 0; background: #333; }
.artist-hero-copy { display: flex; width: 621px; height: 494px; min-width: 0; flex-direction: column; padding: 0; }
.artist-hero-copy h1 { flex: 0 0 61px; font-size: 36px; font-weight: 700; line-height: 43px; letter-spacing: -.01em; }
.artist-hero-copy h1::after { content: ""; display: block; width: 65px; height: 6px; margin-top: 12px; border-radius: 999px; background: var(--creator-blush); }
.artist-hero-copy > p { width: 100%; flex: 0 0 80px; margin-top: 24px; color: #fff; font-size: 14px; font-weight: 500; line-height: 20px; text-align: justify; }
.artist-hero-copy dl { display: grid; box-sizing: border-box; height: 293px; flex: 0 0 293px; grid-template-columns: repeat(2, max-content); gap: 40px; align-content: start; margin-top: 36px; padding: 36px 60px; border-radius: 24px; background: rgba(255, 255, 255, .08); }
.artist-hero-copy dl div { display: flex; min-height: 47px; align-items: center; }
.artist-hero-copy dt { min-width: 67px; margin: 10px; padding: 2px 10px; border: 1px solid rgba(228, 155, 174, .75); border-radius: 999px; color: var(--creator-blush); font-size: 16px; font-weight: 500; line-height: 21px; text-align: center; }
.artist-hero-copy dd { color: #fff; font-size: 20px; font-weight: 700; line-height: 26px; white-space: nowrap; }

.artist-photo-strip { margin-top: 80px; padding: 0; border: 0; }
.artist-photo-strip .creator-section-title,
.artist-work-section .creator-section-title { min-height: 80px; margin-bottom: 40px; }
.artist-photo-strip .creator-section-title > .artist-photo-view-all { margin-bottom: 18px; gap: 12px; opacity: 1; pointer-events: auto; }
.artist-photo-view-all > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #5f5c5d; border-radius: 50%; color: #ddd; font-size: 20px; line-height: 1; }
.artist-photo-carousel { position: relative; }
.artist-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 318px)); justify-content: center; gap: 31px; }
.artist-photo-grid > button { min-width: 0; padding: 20px; border-radius: 24px; background: var(--creator-panel); color: #fff; text-align: center; }
.artist-photo-grid:not(.is-ready) > button:nth-child(n+5),
.artist-photo-grid > button[hidden] { display: none; }
.artist-photo-grid img { display: block; aspect-ratio: 278 / 300; border-radius: 16px; background: #2d1a2a; }
.artist-photo-grid span { display: block; margin-top: 18px; overflow: hidden; font-size: 18px; font-weight: 500; line-height: 23px; text-overflow: ellipsis; white-space: nowrap; }
.artist-photo-arrow { display: grid; position: absolute; z-index: 2; top: 50%; width: 26px; height: 26px; place-items: center; padding: 0; border: 0; background: transparent; color: #fff; transform: translateY(-50%); }
.artist-photo-arrow::before { content: ""; position: absolute; inset: -9px; }
.artist-photo-arrow.is-prev { left: 0; }
.artist-photo-arrow.is-next { right: 0; }
.artist-photo-arrow svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 4; }
.artist-photo-arrow.is-next svg { transform: rotate(180deg); }
.artist-photo-arrow:disabled { cursor: default; }

.artist-work-section { margin-top: 80px; padding: 0 0 80px; border: 0; }
.artist-work-count { opacity: 0; pointer-events: none; }
.artist-video-pages-new .artist-video-viewport { overflow: hidden; transition: height .3s cubic-bezier(.16, 1, .3, 1); }
.artist-video-pages-new .artist-video-track { display: flex; align-items: flex-start; transition: transform .35s cubic-bezier(.16, 1, .3, 1); will-change: transform; }
.artist-video-grid-new { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 24px; }
.artist-video-grid-new .artist-video-open h3 { min-height: 26px; margin-top: 12px; color: #fff; font-size: 16px; font-weight: 400; line-height: 26px; -webkit-line-clamp: 1; }
.artist-video-grid-new .artist-video-meta { display: none; }
.artist-video-grid-new .artist-video-cover { aspect-ratio: 16 / 9; border-radius: 16px; }
.artist-video-grid-new .artist-video-play { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: rgba(0, 0, 0, .7); }
.artist-video-grid-new .artist-video-play svg { width: 24px; fill: #fff; }
.artist-video-pager-new > a.brand-pagination-arrow,
.artist-video-pager-new > span.brand-pagination-arrow,
.artist-video-pager-new .brand-pagination-pages > a,
.artist-video-pager-new .brand-pagination-pages > span:not(.brand-pagination-ellipsis) {
  display: grid;
  height: 34px;
  place-items: center;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-variant-numeric: tabular-nums;
}
.artist-video-pager-new .brand-pagination-pages > a,
.artist-video-pager-new .brand-pagination-pages > span:not(.brand-pagination-ellipsis) { width: 36px; flex: 0 0 36px; }
.artist-video-pager-new .brand-pagination-pages > span.active { border-color: #e49bae; background: #e49bae; color: #08090b; }
.artist-video-pager-new > a.brand-pagination-arrow:hover,
.artist-video-pager-new .brand-pagination-pages > a:hover { border-color: rgba(228, 155, 174, .7); color: #e49bae; }
.artist-video-pager-new > .disabled { opacity: .35; }
.artist-video-pager-new .brand-pagination-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.artist-gallery-experience .artist-breadcrumb { padding-top: 48px; }
.artist-gallery-page { padding: 42px 0 128px; }
.artist-gallery-page .creator-section-title { margin-bottom: 56px; }
.artist-gallery-page .creator-title-lockup { width: max-content; max-width: 100%; }
.artist-gallery-page .creator-title-lockup h1 { white-space: nowrap; }
.artist-gallery-page-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 24px; }
.artist-gallery-photo { min-width: 0; color: #fff; text-align: left; }
.artist-gallery-photo img { display: block; aspect-ratio: 4 / 3.08; border-radius: 16px; background: #333; }
.artist-gallery-photo span { display: block; margin-top: 13px; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }

.photo-viewer[hidden] { display: none; }
.photo-viewer { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 40px; }
.photo-viewer-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .92); backdrop-filter: blur(10px); }
.photo-viewer-dialog { display: grid; position: relative; z-index: 1; width: min(1480px, 92vw); min-height: min(880px, 88vh); grid-template-columns: 72px minmax(0, 1fr) 72px; grid-template-rows: 1fr auto auto; align-items: center; padding: 70px 72px 34px; border-radius: 16px; background: #2d2d2d; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.photo-viewer-dialog figure { display: grid; max-height: 66vh; place-items: center; }
.photo-viewer-dialog figure > img { max-width: 100%; max-height: 66vh; object-fit: contain; }
.photo-viewer-dialog figcaption { margin-top: 10px; color: #aaa; font-size: 13px; }
.photo-viewer-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: #171717; color: #fff; }
.photo-viewer-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.photo-viewer-arrow { position: relative; justify-self: center; background: #1b1b1b; }
.photo-viewer-thumbs { grid-column: 1 / -1; display: flex; justify-content: center; gap: 12px; margin-top: 28px; overflow-x: auto; }
.photo-viewer-thumbs button { flex: 0 0 86px; height: 66px; overflow: hidden; border: 2px solid transparent; border-radius: 10px; opacity: .45; }
.photo-viewer-thumbs button.active { border-color: var(--creator-blush); opacity: 1; }
.photo-viewer-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.photo-viewer-count { grid-column: 1 / -1; justify-self: center; margin-top: 16px; color: #aaa; font-size: 12px; }

.creator-flow button:focus-visible,
.creator-flow a:focus-visible,
.artist-experience button:focus-visible,
.artist-experience a:focus-visible,
.artist-gallery-experience button:focus-visible,
.artist-gallery-experience a:focus-visible,
.photo-viewer button:focus-visible { outline: 3px solid rgba(228, 155, 174, .9); outline-offset: 4px; }

@media (max-width: 1240px) {
  .creator-carousel-arrow.is-prev { left: 10px; }
  .creator-carousel-arrow.is-next { right: 10px; }
  .creator-hot-arrow.is-prev { left: 12px; }
  .creator-hot-arrow.is-next { right: 12px; }
  .artist-hero { width: 100%; grid-template-columns: minmax(0, 51%) minmax(0, 1fr); gap: 32px; }
  .artist-hero-image { width: auto; height: 600px; }
  .artist-hero-copy { width: auto; padding-right: 32px; }
  .artist-hero-copy dl { gap: 24px 18px; padding: 28px 24px; }
  .artist-hero-copy dt { min-width: 56px; margin: 6px; font-size: 13px; }
  .artist-hero-copy dd { font-size: 16px; }
}

@media (max-width: 860px) {
  .artist-player-modal { padding: 12px; }
  .artist-player-dialog { border-radius: 12px; }
  .artist-player-footer { min-height: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 17px; }
  .artist-player-footer > div { width: 100%; }
  .artist-player-footer strong { font-size: 17px; line-height: 1.5; }
  .artist-player-footer small { max-width: none; margin-top: 8px; font-size: 12px; line-height: 1.5; }
  .artist-player-download { width: 100%; height: 44px; margin-top: 18px; }
  .up-page-body .home-site-header,
  .artist-page-body .home-site-header,
  .artist-gallery-page-body .home-site-header { height: 64px; background: linear-gradient(112deg, #2d1a21, #100d0e); }
  .artist-page-body .home-site-header { background: transparent; }
  .creator-shell { width: min(calc(100% - 32px), 680px); }
  .creator-headliners { padding: 58px 0 70px; }
  .creator-hot,
  .creator-directory,
  .creator-series,
  .artist-photo-strip,
  .artist-work-section { padding: 54px 0 76px; }
  .creator-hot { width: 100%; padding: 54px 16px 76px; }
  .creator-section-title { margin-bottom: 28px; }
  .creator-section-title h1,
  .creator-section-title h2 { font-size: 28px; }
  .creator-section-title > div > span { margin-top: 8px; font-size: 11px; }
  .creator-section-title > a { display: none; }
  .creator-card-viewport { overflow: visible; }
  .creator-card-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 10px; transform: none !important; }
  .creator-profile-card { display: none; padding: 6px 6px 14px; border-radius: 10px; }
  .creator-profile-card:nth-child(-n+4),
  .creator-card-track.is-expanded .creator-profile-card { display: block; }
  .creator-profile-image { aspect-ratio: 1 / 1.3; border-radius: 8px; }
  .creator-profile-card h2 { margin-top: 10px; font-size: 14px; }
  .creator-profile-card p { margin-top: 6px; font-size: 11px; }
  .creator-profile-card ul { gap: 4px; margin-top: 7px; }
  .creator-profile-card li { font-size: 10px; }
  .creator-carousel-arrow { display: none; }
  .creator-mobile-more { display: block; }
  .creator-hot .creator-section-title { height: auto; margin-bottom: 28px; }
  .creator-hot-stage { height: min(61vw, 286px); }
  .creator-hot-card {
    top: 8%;
    width: 78%;
    height: 84%;
    border-radius: 12px;
  }
  .creator-hot-card.is-previous { left: 26%; }
  .creator-hot-card.is-next { left: 74%; }
  .creator-hot-card.is-active { top: 0; width: 86%; height: 100%; }
  .creator-hot-card > span { right: 16px; bottom: 15px; left: 16px; }
  .creator-hot-card strong { font-size: 14px; }
  .creator-hot-arrow { display: grid; width: 38px; height: 38px; background: rgba(0, 0, 0, .66); }
  .creator-hot-arrow.is-prev { left: 6px; }
  .creator-hot-arrow.is-next { right: 6px; }
  .creator-hot-arrow svg { width: 19px; }
  .creator-hot-dots { margin-top: 24px; }
  .creator-directory-head { display: block; margin-bottom: 24px; }
  .creator-title-lockup { width: 150px; min-height: 61px; }
  .creator-title-lockup h1,
  .creator-title-lockup h2,
  .creator-section-title > .creator-title-lockup > span { padding-left: 4px; }
  .creator-section-title > .creator-title-lockup > span { margin-top: 8px; }
  .creator-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 9px; }
  .creator-work-card { display: none; }
  .creator-work-card.is-mobile-preview:not([hidden]),
  .creator-work-grid.is-expanded .creator-work-card:not([hidden]) { display: block; }
  .creator-work-card[hidden] { display: none !important; }
  .creator-work-card a > span { border-radius: 10px; }
  .creator-work-card h3 { min-height: 40px; margin-top: 4px; font-size: 12px; white-space: normal; }
  .creator-work-card p { font-size: 10px; }
  .creator-work-pagination { display: none !important; }
  .creator-work-more { display: block; }
  .creator-series-list { gap: 22px; }
  .creator-series-card { display: block; min-height: 0; border-radius: 14px; }
  .creator-series-card > img { display: block; aspect-ratio: 16 / 9; }
  .creator-series-card > span { padding: 18px; }
  .creator-series-card em { align-self: flex-end; margin: -52px 0 26px; }
  .creator-series-card strong { font-size: 18px; }
  .creator-series-card small { margin-top: 8px; font-size: 12px; line-height: 1.65; }
  .artist-experience .creator-shell { width: min(calc(100% - 40px), 335px); }
  .artist-breadcrumb { gap: 5px; padding-top: 35px; font-size: 14px; font-weight: 400; line-height: 22px; }
  .artist-hero { display: block; width: 100%; height: auto; margin-top: 18px; overflow: visible; background: transparent; }
  .artist-hero-image { width: auto; height: auto; aspect-ratio: 1; overflow: hidden; border-radius: 18px; }
  .artist-hero-copy { width: auto; height: auto; padding: 18px 0 0; }
  .artist-hero-copy h1 { font-size: 22px; font-weight: 600; line-height: 29px; }
  .artist-hero-copy h1,
  .artist-hero-copy > p,
  .artist-hero-copy dl { flex-basis: auto; }
  .artist-hero-copy h1::after { width: 46px; height: 4px; margin-top: 10px; }
  .artist-hero-copy > p { height: auto; margin-top: 18px; font-size: 14px; font-weight: 400; line-height: 1.6; }
  .artist-hero-copy dl { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 18px; padding: 20px; border-radius: 18px; }
  .artist-hero-copy dl div { min-width: 0; min-height: 28px; }
  .artist-hero-copy dt { min-width: 48px; margin: 0; padding: 1px 8px; font-size: 12px; line-height: 16px; }
  .artist-hero-copy dd { overflow: hidden; font-size: 15px; line-height: 20px; text-overflow: ellipsis; }
  .artist-photo-strip { margin-top: 80px; }
  .artist-photo-strip .creator-section-title,
  .artist-work-section .creator-section-title { min-height: 65px; margin-bottom: 18px; }
  .artist-photo-carousel { padding-bottom: 48px; }
  .artist-photo-grid { grid-template-columns: repeat(2, minmax(0, 163px)); gap: 6px 7px; }
  .artist-photo-grid > button { padding: 10px; border-radius: 12px; }
  .artist-photo-grid img { aspect-ratio: 142.625 / 153.912; border-radius: 8px; }
  .artist-photo-grid span { margin-top: 8px; font-size: 12px; line-height: 16px; }
  .artist-photo-arrow { top: auto; bottom: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, .2); transform: none; }
  .artist-photo-arrow::before { inset: -7px; }
  .artist-photo-arrow.is-prev { left: calc(50% - 35px); }
  .artist-photo-arrow.is-next { right: calc(50% - 35px); }
  .artist-photo-arrow svg { width: 8px; height: 12px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .artist-work-section { margin-top: 18px; padding: 18px 0 80px; border-top: 1px solid rgba(255, 255, 255, .06); }
  .artist-video-grid-new { grid-template-columns: 1fr; gap: 18px; }
  .artist-video-grid-new .artist-video-cover { aspect-ratio: 16 / 9; border-radius: 10px; }
  .artist-video-grid-new .artist-video-open h3 { min-height: 19px; margin-top: 12px; font-size: 12px; line-height: 19px; }
  .artist-gallery-experience .artist-breadcrumb { padding-top: 24px; }
  .artist-gallery-page { padding: 28px 0 76px; }
  .artist-gallery-page .creator-section-title { margin-bottom: 34px; }
  .artist-gallery-page-grid { grid-template-columns: 1fr; gap: 26px; }
  .artist-gallery-photo img { aspect-ratio: 343 / 197; border-radius: 12px; }
  .photo-viewer { padding: 20px; }
  .photo-viewer-dialog { display: grid; width: min(295px, 84vw); min-height: 440px; grid-template-columns: 1fr; grid-template-rows: 1fr auto; padding: 42px 18px 18px; border-radius: 14px; }
  .photo-viewer-dialog figure { max-height: 60vh; }
  .photo-viewer-dialog figure > img { max-height: 60vh; }
  .photo-viewer-dialog figcaption { font-size: 11px; }
  .photo-viewer-arrow,
  .photo-viewer-thumbs { display: none; }
  .photo-viewer-count { grid-column: 1; }
  .photo-viewer-close { top: 10px; right: 10px; width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .creator-card-track,
  .creator-hot-track,
  .creator-profile-card img,
  .creator-work-card img,
  .creator-hot-card > img,
  .creator-series-card > img,
  .artist-player-toggle { transition: none; }
  .creator-hot-card { transition: none; }
}
