/* Leakly — modern adult tube (black + hot pink, NOT Pornhub orange, NOT luxury serif) */

:root {
  --bg-0: #0a0a0a;
  --bg-1: #121212;
  --bg-2: #1a1a1a;
  --bg-3: #242424;
  --bg-elevated: rgba(20, 20, 20, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: #bdbdbd;
  --text-dim: #777777;
  --brand: #ff2d6a;
  --brand-2: #ff4d80;
  --brand-soft: rgba(255, 45, 106, 0.16);
  --danger: #ff4d4d;
  --radius: 10px;
  --radius-sm: 6px;
  --header-h: 64px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  --font-display: "Sora", sans-serif;
  --font-body: "Sora", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --toast-gap: 8px;
  --container: 1420px;
  --dur: 0.35s;
}

*,
*::before,
*::after { box-sizing: border-box; }

textarea {
  resize: none;
}

html {
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden; /* never scroll the viewport — Windows classic bar ignores ::-webkit-scrollbar */
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
}

/* Real scrollport (not html/body) — custom thin bar always works on Windows Chrome/Edge */
.lk-scrollport {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }
}

/* Soft page enter — opacity only (transform breaks position:fixed modals) */
main {
  flex: 1 0 auto;
  width: 100%;
  min-height: 0;
  animation: pageIn 0.55s var(--ease-soft) both;
}
.site-header,
.mobile-nav,
.site-footer {
  flex-shrink: 0;
}
.site-footer {
  margin-top: auto;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ultra-thin custom scrollbar (scrollport + rails) */
.lk-scrollport::-webkit-scrollbar,
.lk-scroll::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.lk-scrollport::-webkit-scrollbar-button,
.lk-scroll::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.lk-scrollport::-webkit-scrollbar-track,
.lk-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.lk-scrollport::-webkit-scrollbar-thumb,
.lk-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  border: none;
  min-height: 24px;
}
.lk-scrollport::-webkit-scrollbar-thumb:hover,
.lk-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}
.lk-scrollport::-webkit-scrollbar-corner,
.lk-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.lk-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft),
    color var(--dur) var(--ease-soft),
    transform 0.25s var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft);
}
.btn:hover { transform: translateY(-1px); }
.btn:active {
  transform: translateY(0);
  filter: brightness(0.96);
}
.btn-sm {
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  font-size: 0.78rem;
}
.btn-primary {
  background: var(--brand);
  border-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--brand-2);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(255, 45, 106, 0.16);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ececec;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Central custom checkbox (.lk-check) ── */
.lk-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lk-check--block {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.lk-check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
.lk-check__box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.05rem;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  position: relative;
  transition:
    border-color 0.22s var(--ease-soft),
    background 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft);
}
.lk-check__box::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2.5px;
  background: #fff;
  opacity: 0;
  transform: scale(0.55);
  transition:
    opacity 0.18s var(--ease-soft),
    transform 0.22s var(--ease-soft);
}
.lk-check:hover .lk-check__box {
  border-color: rgba(255, 255, 255, 0.5);
}
.lk-check__input:focus-visible + .lk-check__box {
  border-color: rgba(255, 45, 106, 0.7);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.lk-check__input:checked + .lk-check__box {
  border-color: rgba(255, 255, 255, 0.55);
}
.lk-check__input:checked + .lk-check__box::after {
  opacity: 1;
  transform: scale(1);
}
.lk-check__input:disabled + .lk-check__box {
  opacity: 0.4;
  cursor: not-allowed;
}
.lk-check__input:disabled ~ .lk-check__text {
  opacity: 0.5;
  cursor: not-allowed;
}
.lk-check__text {
  min-width: 0;
  transition: color 0.2s ease;
}
.lk-check:hover .lk-check__text {
  color: #e4e4e4;
}
.lk-check__input:checked ~ .lk-check__text {
  color: #ececec;
}
.lk-check--sm .lk-check__box {
  width: 15px;
  height: 15px;
  border-radius: 4px;
}
.lk-check--sm .lk-check__box::after {
  inset: 2.5px;
  border-radius: 2px;
}
.lk-check--sm {
  font-size: 0.78rem;
  gap: 0.45rem;
}
.lk-check--brand .lk-check__input:checked + .lk-check__box {
  border-color: rgba(255, 45, 106, 0.75);
}
.lk-check--brand .lk-check__input:checked + .lk-check__box::after {
  background: var(--brand);
}

/* ── Central custom radio (.lk-radio) ── */
.lk-radio {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  width: 100%;
  color: #cfcfd4;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lk-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
.lk-radio__dot {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition:
    border-color 0.22s var(--ease-soft),
    background 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft);
}
.lk-radio__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 45, 106, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45);
  transition:
    opacity 0.18s var(--ease-soft),
    transform 0.22s var(--ease-soft);
}
.lk-radio:hover .lk-radio__dot {
  border-color: rgba(255, 255, 255, 0.5);
}
.lk-radio__input:focus-visible + .lk-radio__dot {
  border-color: rgba(255, 45, 106, 0.75);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.lk-radio__input:checked + .lk-radio__dot {
  border-color: rgba(255, 45, 106, 0.9);
  background: rgba(255, 45, 106, 0.12);
}
.lk-radio__input:checked + .lk-radio__dot::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.lk-radio__input:disabled + .lk-radio__dot {
  opacity: 0.4;
  cursor: not-allowed;
}
.lk-radio__input:disabled ~ .lk-radio__text {
  opacity: 0.5;
  cursor: not-allowed;
}
.lk-radio__text {
  min-width: 0;
  transition: color 0.2s ease;
}
.lk-radio:hover .lk-radio__text {
  color: #f0f0f2;
}
.lk-radio__input:checked ~ .lk-radio__text {
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease-soft), opacity 0.25s ease;
}
.pill--free {
  background: var(--brand);
  color: #fff;
}
.pill--muted {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--line);
}

/* Header — soft glass, fades into page */
.lk-header-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  filter: blur(72px);
  transition: opacity 0.7s ease;
  background: transparent;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 55%, transparent 100%);
}
.lk-header-glow.is-on {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.22);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    background 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease,
    backdrop-filter 0.55s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.55s ease;
  z-index: 0;
}
.site-header > * {
  position: relative;
  z-index: 1;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 72px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.22) 38%,
      rgba(10, 10, 10, 0.06) 68%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 45, 106, 0.045) 0%,
      rgba(255, 45, 106, 0.015) 42%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.58);
  box-shadow: none;
}
.site-header.is-scrolled::after {
  height: 56px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.42) 0%,
      rgba(10, 10, 10, 0.14) 45%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 45, 106, 0.03) 0%,
      transparent 70%
    );
}
.site-header.is-ambient-lit {
  backdrop-filter: blur(24px) saturate(1.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.55);
}
.site-header.is-ambient-lit::before {
  opacity: 0;
}
.site-header.is-ambient-lit::after {
  opacity: 0.25;
}
.site-header__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  min-width: 0;
  overflow: hidden;
}
.header-left .brand__lk {
  font-size: 1.48rem;
}
.header-left .brand__lk::after {
  height: 3.25px;
  margin-top: 0.24rem;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  min-width: 0;
}

/* Centered search — compact, expands on focus (turkifsami-like) */
.header-search-shell {
  position: relative;
  justify-self: center;
  z-index: 120;
  grid-column: 2;
}
.header-search-shell:not(.header-search-shell--mobile) {
  width: 250px;
  max-width: 100%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search-shell:not(.header-search-shell--mobile).is-expanded,
.header-search-shell:not(.header-search-shell--mobile).is-suggest-open,
.header-search-shell:not(.header-search-shell--mobile):focus-within {
  width: min(440px, 36vw);
}
.header-search-shell.is-suggest-open {
  z-index: 160;
}
.header-search-shell--mobile {
  width: 100%;
  margin: 0.25rem 0 0.85rem;
}
.header-search {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: text;
  transition:
    border-color var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft),
    background var(--dur) var(--ease-soft);
}
.header-search:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.header-search-shell.is-suggest-open .header-search,
.header-search-shell.is-expanded .header-search,
.header-search:focus-within {
  border-color: rgba(255, 45, 106, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.header-search__mag {
  flex: 0 0 auto;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.32s var(--ease-soft);
}
.header-search-shell.is-suggest-open .header-search__mag,
.header-search-shell.is-expanded .header-search__mag,
.header-search:focus-within .header-search__mag {
  color: var(--brand);
  transform: scale(1.06);
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0.55rem 0.25rem 0.55rem 0;
  font-size: 0.88rem;
}
.header-search input::placeholder { color: #666; }
/* Kill native blue/OS clear (X) on type=search */
.header-search input[type="search"]::-webkit-search-decoration,
.header-search input[type="search"]::-webkit-search-cancel-button,
.header-search input[type="search"]::-webkit-search-results-button,
.header-search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.header-search input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.header-search__clear {
  flex: 0 0 auto;
  width: 32px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #a1a1aa;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.header-search__clear:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.header-search__clear:active {
  transform: scale(0.94);
  color: var(--brand);
}
.header-search__clear[hidden] {
  display: none !important;
}
.header-search__voice {
  flex: 0 0 auto;
  width: 42px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}
.header-search__voice:hover { color: var(--brand); }
.header-search__voice.is-listening {
  color: var(--brand);
  animation: micPulse 1s ease-in-out infinite;
}
@keyframes micPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.08); }
}

.search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 0.85rem 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: fadeRise 0.28s var(--ease-soft) both;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.search-dropdown[hidden] { display: none !important; }
.search-dropdown__section + .search-dropdown__section {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.search-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.search-dropdown__head h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.search-dropdown__clear {
  border: 0;
  background: none;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  border-radius: 6px;
  text-decoration: none;
}
.search-dropdown__clear:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.search-live {
  display: grid;
  gap: 0.35rem;
}
.search-live__group-label {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
}
.search-live__group-label:first-child {
  margin-top: 0;
}
.search-live__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease;
}
.search-live__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
.search-live__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #1a1a1e;
}
.search-live__thumb.tone-a { background: linear-gradient(135deg, #3a1a28, #1a1020); }
.search-live__thumb.tone-b { background: linear-gradient(135deg, #1a2a3a, #101820); }
.search-live__thumb.tone-c { background: linear-gradient(135deg, #2a1a3a, #181028); }
.search-live__thumb.tone-d { background: linear-gradient(135deg, #1a3a2a, #102018); }
.search-live__thumb.tone-e { background: linear-gradient(135deg, #3a2a1a, #201810); }
.search-live__thumb.tone-f { background: linear-gradient(135deg, #2a3a3a, #182020); }
.search-live__thumb.tone-g { background: linear-gradient(135deg, #3a1a1a, #201010); }
.search-live__thumb.tone-h { background: linear-gradient(135deg, #1a1a3a, #101028); }
.search-live__dur {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0.08rem 0.28rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}
.search-live__avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.search-live__text {
  min-width: 0;
  flex: 1;
}
.search-live__text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 650;
  color: #f4f4f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-live__text span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-live__empty,
.search-live__status {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  padding: 0.55rem 0.4rem;
}
.search-live__status {
  color: var(--brand);
}

.search-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.search-recent-row {
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.search-recent-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.search-recent-term {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  background: none;
  color: #d4d4d8;
  cursor: pointer;
  text-align: left;
  padding: 0.55rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.search-recent-term svg { color: #71717a; flex: 0 0 auto; }
.search-recent-term span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-recent-term:hover { color: #fff; }
.search-recent-remove {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: none;
  color: #71717a;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.search-recent-remove:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.search-trend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.search-trend-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: #e5e5e5;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.search-trend-chip svg { color: var(--brand); }
.search-trend-chip:hover {
  border-color: rgba(255, 45, 106, 0.45);
  color: #fff;
  background: var(--brand-soft);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  flex: 0 0 auto;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s var(--ease-soft), opacity 0.3s ease;
}
.brand:hover { transform: translateY(-1px); opacity: 0.95; }
.brand__lk {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.07em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.brand__lk::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin: 0.22rem auto 0;
  border-radius: 999px;
  background: var(--brand);
  transform-origin: 50% 0%;
  transition:
    height 0.35s var(--ease-soft),
    width 0.35s var(--ease-soft),
    border-radius 0.35s var(--ease-soft),
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s ease;
}
.brand:hover .brand__lk::after {
  transform: scaleX(1.06);
  box-shadow: 0 0 12px rgba(255, 45, 106, 0.45);
}

/* Footer brand wordmark */
.brand--footer:hover {
  transform: none;
  opacity: 1;
}
.brand--footer:hover .brand__ly {
  filter: brightness(1.1);
}
.brand--lg .brand__lk { font-size: 2rem; }
.brand--lg .brand__lk::after { height: 4px; margin-top: 0.3rem; }
.brand__text,
.brand__mark,
.brand__icon { display: none; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-right: auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  transition:
    opacity 0.28s var(--ease-soft),
    transform 0.28s var(--ease-soft),
    max-width 0.35s var(--ease-soft);
}
.nav-desktop a {
  position: relative;
  padding: 0.5rem 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.86rem;
  border-radius: 999px;
  transition:
    color 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft),
    transform 0.25s var(--ease-soft);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-soft);
}
.nav-desktop a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 1.1rem; }
.nav-desktop a.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}

.mobile-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.mobile-toggle:hover {
  border-color: rgba(255, 45, 106, 0.4);
  background: var(--brand-soft);
}
.mobile-toggle span {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease-soft), opacity 0.3s ease;
}
.site-header__nav { display: none; }

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .mobile-toggle { display: none; }

  /* Search open: tuck nav so Creators pill never paints over the input */
  .site-header__top:has(.header-search-shell.is-expanded) .nav-desktop,
  .site-header__top:has(.header-search-shell.is-suggest-open) .nav-desktop,
  .site-header__top:has(.header-search-shell:focus-within) .nav-desktop {
    opacity: 0;
    pointer-events: none;
    max-width: 0;
    transform: translateX(-8px);
  }
}
@media (min-width: 980px) and (max-width: 1280px) {
  .nav-desktop {
    gap: 0;
  }
  .nav-desktop a {
    font-size: 0.78rem;
    padding: 0.4rem 0.55rem;
  }
  .header-left {
    gap: 0.85rem;
  }
  .header-search-shell:not(.header-search-shell--mobile).is-expanded,
  .header-search-shell:not(.header-search-shell--mobile).is-suggest-open,
  .header-search-shell:not(.header-search-shell--mobile):focus-within {
    width: min(380px, 32vw);
  }
}
@media (max-width: 979px) {
  .site-header__top {
    grid-template-columns: 1fr auto;
  }
  .header-search-shell:not(.header-search-shell--mobile) {
    display: none;
  }
  .pill--free { display: none; }
}

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  border-bottom: 1px solid transparent;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  transition:
    grid-template-rows 0.4s var(--ease-soft),
    border-color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}
.mobile-nav > .container {
  overflow: hidden;
  min-height: 0;
}
.mobile-nav.is-open {
  grid-template-rows: 1fr;
  border-bottom-color: var(--line);
  opacity: 1;
  padding: 0.15rem 0 0.85rem;
}
.mobile-nav__links { display: grid; }
.mobile-nav__links a {
  display: block;
  padding: 0.8rem 0.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.25s ease, padding-left 0.25s var(--ease-soft);
}
.mobile-nav__links a:hover {
  color: var(--brand);
  padding-left: 0.35rem;
}

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Catalog */
.section { padding: 1rem 0 1.5rem; }
.cat-row {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.9rem;
}
.cat-chip {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft),
    border-color 0.25s var(--ease-soft),
    transform 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft);
}
.cat-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.cat-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.section__head > div { min-width: 0; }
.section__sub {
  margin: 0.25rem 0 0;
  color: #8a8a8a;
  font-size: 0.9rem;
  line-height: 1.4;
}
.home-rail {
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
}
.home-empty__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.home-explore {
  padding-top: 0.75rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
}
.home-explore__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 720px) {
  .home-explore__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
.home-explore__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  min-height: 5.25rem;
  padding: 1.05rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 45, 106, 0.08) 0%, transparent 55%),
    rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.home-explore__card:hover {
  border-color: rgba(255, 45, 106, 0.35);
  transform: translateY(-2px);
}
.home-explore__card strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-explore__card span {
  color: #8a8a8a;
  font-size: 0.88rem;
  line-height: 1.4;
}
.catalog-grid--home {
  /* discovery preview — slightly fewer columns feel on wide screens */
}
.catalog-grid--browse {
  /* full library density */
}
.section--continue {
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}
.continue-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(11.5rem, 16rem);
  gap: 0.85rem 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.continue-card {
  scroll-snap-align: start;
}
.continue-card__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3;
}
.continue-card__bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #ff7aa5);
}
.section__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-style: normal;
  font-family: var(--font-display);
}
.section__head p {
  margin: 0.2rem 0 0;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.section__tools { display: flex; gap: 0.4rem; }
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

/* Random pick — turkifsami-style, Leakly pink */
.random-pick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  max-width: 100%;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}
.random-pick-btn:hover {
  border-color: rgba(255, 45, 106, 0.45);
  background: rgba(255, 45, 106, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 45, 106, 0.12);
  color: #fff;
}
.random-pick-btn.is-active,
.random-pick-btn.random-pick-btn--active {
  border-color: rgba(255, 45, 106, 0.55);
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.2) 0%, rgba(255, 45, 106, 0.06) 100%);
  box-shadow: 0 0 0 1px rgba(255, 45, 106, 0.12), 0 8px 22px rgba(255, 45, 106, 0.14);
}
.random-pick-btn--loading {
  pointer-events: none;
  opacity: 0.85;
}
.random-pick-btn__icon-wrap {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 45, 106, 0.14);
  border: 1px solid rgba(255, 45, 106, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.random-pick-btn.is-active .random-pick-btn__icon-wrap,
.random-pick-btn.random-pick-btn--active .random-pick-btn__icon-wrap {
  background: var(--brand);
  border-color: rgba(255, 120, 160, 0.55);
}
.random-pick-btn__icon {
  color: var(--brand);
  display: block;
  transform-origin: center;
  transition: color 0.2s ease;
}
.random-pick-btn.is-active .random-pick-btn__icon,
.random-pick-btn.random-pick-btn--active .random-pick-btn__icon {
  color: #fff;
}
.random-pick-btn__icon--spin {
  animation: random-shuffle-spin 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes random-shuffle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.random-pick-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.2;
}
.random-pick-btn__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}
.random-pick-btn__hint {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #8a8a93;
  margin-top: 0.125rem;
  white-space: nowrap;
}
.random-pick-btn.is-active .random-pick-btn__hint,
.random-pick-btn.random-pick-btn--active .random-pick-btn__hint {
  color: var(--brand);
}

.lk-dd--sort.is-highlighted .lk-dd__trigger--sort {
  border-color: rgba(255, 45, 106, 0.45);
  color: var(--brand);
  background: rgba(255, 45, 106, 0.1);
}
.lk-dd__trigger--sort {
  gap: 0.4rem;
  min-height: 38px;
}
.lk-dd__sort-ico {
  opacity: 0.85;
  flex: 0 0 auto;
}
.lk-dd__menu--sort {
  min-width: 190px;
  padding: 0.35rem;
  border-radius: 14px;
}
.lk-dd__item--sort {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
}
.lk-dd__item-ico {
  display: inline-flex;
  width: 1.15rem;
  justify-content: center;
  color: #c4c4cc;
}

@media (max-width: 640px) {
  .catalog-filters {
    width: 100%;
    justify-content: stretch;
  }
  .random-pick-btn {
    flex: 1 1 auto;
  }
  .random-pick-btn__hint {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__tools.catalog-filters {
    width: 100%;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.55rem;
  transition: opacity 0.2s ease;
}
[data-lk-catalog-mount].is-catalog-loading,
.catalog-grid.is-catalog-loading {
  opacity: 0.45;
  pointer-events: none;
}
@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 0.7rem;
  }
}
@media (min-width: 1200px) {
  .catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.thumb {
  display: block;
  animation: fadeRise 0.45s var(--ease-soft) both;
  animation-delay: calc(min(var(--i, 0), 24) * 0.025s);
}
.thumb__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  border: 1px solid transparent;
  transition:
    border-color 0.35s var(--ease-soft),
    transform 0.4s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft);
}
.thumb:hover .thumb__frame {
  border-color: rgba(255, 45, 106, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.thumb__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease-soft), filter 0.45s ease, opacity 0.2s ease;
}
.thumb__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.thumb:hover .thumb__preview {
  opacity: 1;
}
.thumb:hover .thumb__media {
  transform: scale(1.06);
  filter: brightness(1.08);
}
.thumb:hover:has(.thumb__preview) .thumb__media {
  opacity: 0;
}
.thumb__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  pointer-events: none;
  z-index: 2;
}
.thumb__play {
  position: absolute;
  inset: 0;
  display: none; /* catalog thumbs: no center play overlay */
  place-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.thumb__play svg {
  width: 44px;
  height: 44px;
  padding: 13px 11px 13px 15px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.thumb:hover .thumb__play {
  opacity: 0;
  display: none;
}
.thumb__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thumb__free {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thumb__duration {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  padding: 0.12rem 0.35rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.thumb__meta { padding: 0.5rem 0.05rem 0.1rem; }
.thumb__meta h3 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s var(--ease-soft);
}
.thumb__meta span {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-dim);
  font-size: 0.74rem;
}
.thumb:hover .thumb__meta h3 { color: var(--brand); }

.tone-a { background: linear-gradient(135deg, #3a1a28, #111 60%); }
.tone-b { background: linear-gradient(135deg, #2a1420, #0d0d0d 55%); }
.tone-c { background: linear-gradient(135deg, #401828, #121212 60%); }
.tone-d { background: linear-gradient(135deg, #2f121c, #0a0a0a 55%); }
.tone-e { background: linear-gradient(135deg, #451c2c, #101010 58%); }
.tone-f { background: linear-gradient(135deg, #331420, #0f0f0f 55%); }
.tone-g { background: linear-gradient(135deg, #3b1624, #111 60%); }
.tone-h { background: linear-gradient(135deg, #2c121c, #0c0c0c 55%); }

.free-banner {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 45, 106, 0.28);
  background: linear-gradient(90deg, rgba(255, 45, 106, 0.14), transparent 55%), rgba(18, 18, 18, 0.75);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-soft);
}
.free-banner:hover {
  border-color: rgba(255, 45, 106, 0.45);
  transform: translateY(-1px);
}
.free-banner h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  font-style: normal;
  font-family: var(--font-display);
}
.free-banner p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Soft page→footer blend */
.site-blend {
  display: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
  margin-top: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%),
    var(--bg-0);
  padding: 2.75rem 0 1.35rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 90px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.45) 48%,
    var(--bg-0) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.site-footer__inner {
  position: relative;
  z-index: 1;
}
.site-footer__glow {
  position: absolute;
  left: 50%;
  top: -20px;
  width: min(720px, 90%);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 80% 70% at 50% 0%,
    rgba(255, 45, 106, 0.07),
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 1.5rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .site-footer__grid {
    grid-template-columns: minmax(200px, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 280px;
}
.site-footer__brand .brand {
  margin-bottom: 0;
}
.site-footer__brand .brand__word {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.site-footer__brand .brand__leak {
  color: #fff;
}
.site-footer__brand .brand__ly {
  color: var(--brand);
}
.site-footer__tag {
  margin: 0;
  color: #8a8a93;
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 220px;
}
.site-footer__langs {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.site-footer__lang {
  min-width: 36px;
  height: 28px;
  padding: 0 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #8a8a93;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-footer__lang:hover {
  color: #fff;
}
.site-footer__lang.is-current {
  color: #fff;
  background: rgba(255, 45, 106, 0.9);
}

.site-footer__col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b4b4bb;
  font-family: var(--font-display);
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.site-footer__col a {
  color: #7c7c86;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.22s var(--ease-soft), transform 0.22s var(--ease-soft);
}
.site-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #5c5c66;
  font-size: 0.78rem;
}
.site-footer__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.site-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 0.4rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 45, 106, 0.35);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}
.site-footer__legal a {
  color: #6a6a74;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__legal a:hover {
  color: var(--brand);
}

/* Age gate — cinematic overlay */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1.1rem max(1rem, env(safe-area-inset-bottom));
  isolation: isolate;
  overflow: hidden;
}
.age-gate[hidden],
html.lk-age-ok .age-gate {
  display: none !important;
}
.age-gate.is-leaving {
  pointer-events: none;
  animation: ageGateOut 0.38s var(--ease-soft) forwards;
}
.age-gate__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(255, 45, 106, 0.22), transparent 55%),
    radial-gradient(60% 50% at 100% 100%, rgba(255, 45, 106, 0.08), transparent 50%),
    rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
.age-gate__glow {
  position: absolute;
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  left: 50%;
  top: 42%;
  z-index: 0;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.28), transparent 68%);
  filter: blur(28px);
  animation: ageGlow 6.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.age-gate__card {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 2rem 1.65rem 1.45rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(165deg, rgba(36, 36, 42, 0.96) 0%, rgba(14, 14, 16, 0.98) 55%, rgba(10, 10, 12, 0.99) 100%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 45, 106, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  animation: ageCardIn 0.55s var(--ease-soft) both;
}
.age-gate__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 45, 106, 0.07) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: ageSheen 7s linear infinite;
  pointer-events: none;
}
.age-gate__mark {
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
}
.age-gate__brand {
  pointer-events: none;
}
.age-gate__brand .brand__lk {
  font-size: clamp(2.1rem, 6vw, 2.55rem);
  letter-spacing: 0.04em;
}
.age-gate__brand .brand__lk::after {
  height: 4px;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  width: 100%;
}
.age-gate__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.age-gate__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.age-gate__text {
  margin: 0.7rem auto 1.35rem;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.age-gate__actions {
  display: grid;
  gap: 0.55rem;
}
.age-gate__enter,
.age-gate__leave {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.age-gate__enter {
  box-shadow: 0 10px 28px rgba(255, 45, 106, 0.35);
}
.age-gate__enter:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 45, 106, 0.42);
}
.age-gate__leave {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.age-gate__leave:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.age-gate__fine {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--text-dim);
}
@keyframes ageCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes ageGateOut {
  to {
    opacity: 0;
  }
}
@keyframes ageGlow {
  from { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes ageSheen {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .age-gate__card,
  .age-gate__glow,
  .age-gate__card::before,
  .age-gate.is-leaving {
    animation: none;
  }
}

/* Toast */
.lk-toast-stack {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.9rem, env(safe-area-inset-bottom));
  z-index: 2000;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.55rem;
  width: min(calc(100vw - 1.7rem), 340px);
  pointer-events: none;
}
.lk-toast {
  --toast-accent: var(--brand);
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem 0.95rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(36, 36, 40, 0.96), rgba(16, 16, 18, 0.94));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 45, 106, 0.06) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(12px, 14px, 0) scale(0.96);
  transition:
    opacity 0.38s var(--ease-soft),
    transform 0.42s var(--ease-soft);
}
.lk-toast.is-visible,
.lk-toast.is-updating {
  opacity: 1;
  transform: none;
}
.lk-toast.is-leaving {
  opacity: 0;
  transform: translate3d(10px, 10px, 0) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.36s var(--ease-soft),
    transform 0.36s var(--ease-soft);
}
.lk-toast.is-updating {
  animation: toastBump 0.48s var(--ease-soft);
}
.lk-toast__glow {
  position: absolute;
  inset: auto auto -40% -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, color-mix(in srgb, var(--toast-accent) 28%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}
.lk-toast__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.05rem;
  border-radius: 10px;
  color: #fff;
  background: color-mix(in srgb, var(--toast-accent) 22%, rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--toast-accent) 35%, transparent);
  flex: 0 0 auto;
}
.lk-toast--success { --toast-accent: #3ecf8e; }
.lk-toast--error { --toast-accent: var(--danger); }
.lk-toast--info { --toast-accent: var(--brand); }
.lk-toast__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding-right: 0.15rem;
}
.lk-toast__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.lk-toast__msg {
  margin: 0.18rem 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}
.lk-toast__close {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin: -0.15rem -0.2rem 0 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}
.lk-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.lk-toast__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.lk-toast__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--toast-accent), color-mix(in srgb, var(--toast-accent) 45%, #fff));
  opacity: 0.85;
}
@keyframes toastBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.025); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .lk-toast,
  .lk-toast.is-leaving,
  .lk-toast.is-updating {
    animation: none;
    transition: opacity 0.15s ease;
  }
}

/* Dropdown */
.lk-dd { position: relative; display: inline-block; }
.lk-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ececec;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  transition:
    border-color 0.25s var(--ease-soft),
    color 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft),
    transform 0.25s var(--ease-soft);
}
.lk-dd__trigger:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.lk-dd__trigger--compact { min-width: 54px; justify-content: center; }
.lk-dd__trigger--account {
  min-width: 0;
  min-height: 40px;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem 0.3rem 0.35rem;
  max-width: 12.5rem;
  font-size: 0.86rem;
}
.lk-dd__trigger--account svg {
  width: 12px;
  height: 12px;
}
.header-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 45, 106, 0.2);
  border: 1px solid rgba(255, 45, 106, 0.4);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.header-user-avatar--lg {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.05rem;
}
.header-user-avatar--xl {
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.25rem;
}
.header-user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7.25rem;
  font-weight: 650;
  font-size: 0.86rem;
}
.lk-dd--account { z-index: 30; }
.lk-dd__menu--account {
  min-width: 18rem;
  padding: 0.5rem;
  right: 0;
  left: auto;
}
.lk-dd__account-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.65rem 0.85rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lk-dd__account-meta { min-width: 0; }
.lk-dd__account-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1.2;
}
.lk-dd__account-handle {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #8a8a93;
}
.lk-dd__menu--account .lk-dd__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 11px;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
}
.lk-dd__menu--account .lk-dd__item .lk-dd__item-ico {
  color: #8a8a93;
  width: 1.15rem;
  display: grid;
  place-items: center;
}
.lk-dd__menu--account .lk-dd__item .lk-dd__item-ico svg {
  width: 16px;
  height: 16px;
}
.lk-dd__menu--account .lk-dd__item:hover .lk-dd__item-ico,
.lk-dd__menu--account .lk-dd__item.is-active .lk-dd__item-ico {
  color: var(--brand);
}
.lk-dd__menu--account .lk-dd__item.is-active {
  background: rgba(255, 45, 106, 0.14);
  color: #ff8fb0;
}
.lk-dd__menu--account .lk-dd__item.is-active::after {
  display: none;
}
.lk-dd__sep {
  height: 1px;
  margin: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
}
.lk-dd__item--danger {
  color: #ff7a9a !important;
}
.lk-dd__item--danger:hover {
  background: rgba(255, 45, 106, 0.12) !important;
  color: #ffb0c8 !important;
}
.lk-dd__item--danger .lk-dd__item-ico {
  color: #ff7a9a !important;
}

/* —— Profile (turkifsami-style: banner + tabs + grid) —— */
.profile { padding-bottom: 3rem; }
.profile-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 2.25rem;
}
.profile-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.profile-hero__wash {
  position: absolute;
  inset: -20% -10%;
  display: grid;
  place-items: center;
  font-size: clamp(10rem, 32vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 45, 106, 0.14);
  filter: blur(18px);
  user-select: none;
  transform: scale(1.15);
}
.profile-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-0) 0%,
    rgba(10, 10, 10, 0.92) 28%,
    rgba(10, 10, 10, 0.78) 55%,
    var(--bg-0) 100%
  );
}
.profile-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .profile-hero {
    padding: 3.25rem 0 2.75rem;
  }
  .profile-hero__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
}
.profile-hero__avatar {
  flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #ff4d80, #ff2d6a 55%, #c01248);
  box-shadow:
    0 0 0 4px var(--bg-0),
    0 0 0 8px var(--brand),
    0 18px 40px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .profile-hero__avatar {
    width: 10rem;
    height: 10rem;
    font-size: 3rem;
  }
}
.profile-hero__info { min-width: 0; }
.profile-hero__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.9rem;
}
@media (min-width: 768px) {
  .profile-hero__title-row { justify-content: flex-start; }
}
.profile-hero__title-row h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.profile-hero__settings {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 106, 0.35);
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.profile-hero__settings:hover {
  filter: brightness(1.06);
  color: #fff;
}
.profile-hero__handle {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}
.profile-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
}
@media (min-width: 768px) {
  .profile-hero__stats { justify-content: flex-start; }
}
.profile-stat { text-align: center; }
.profile-stat__value {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 800;
}
.profile-stat__value svg { opacity: 0.75; }
.profile-stat__label {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-body {
  padding-top: 1.75rem;
}
.profile-panel {
  transition: opacity 0.2s ease;
  min-height: 10rem;
}
.profile-panel.is-profile-loading {
  opacity: 0.45;
  pointer-events: none;
}
.profile-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .profile-toolbar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  justify-content: center;
}
@media (min-width: 720px) {
  .profile-tabs { justify-content: flex-start; }
}
.profile-tabs__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.profile-tabs__btn:hover { color: var(--text); }
.profile-tabs__btn.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.profile-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
@media (min-width: 720px) {
  .profile-sort { justify-content: flex-end; }
}
.profile-sort__btn {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}
.profile-sort__btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}
.profile-sort__btn.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.profile-empty {
  padding: 3.5rem 1rem;
  text-align: center;
}
.profile-empty__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.profile-empty h2 {
  margin: 0;
  font-size: 1.15rem;
}
.profile-empty p {
  margin: 0.45rem auto 1.1rem;
  max-width: 22rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* —— Settings (turkifsami-style: sidebar + cards) —— */
.settings-page {
  padding: 1.75rem 0 3.5rem;
}
.settings-page__inner {
  max-width: 1100px;
}
.settings-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}
.settings-head__back {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background: var(--bg-1);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.settings-head__back:hover {
  color: var(--text);
  border-color: rgba(255, 45, 106, 0.4);
}
.settings-head h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.settings-head p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.settings-mobile-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.settings-mobile-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 960px) {
  .settings-mobile-tabs { display: none; }
}
.settings-mobile-tab {
  flex: 0 0 auto;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}
.settings-mobile-tab.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.settings-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.settings-sidebar {
  display: none;
  width: 15.5rem;
  flex: 0 0 15.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
@media (min-width: 960px) {
  .settings-sidebar { display: block; }
}
.settings-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.settings-nav-divider {
  height: 1px;
  margin: 0.7rem 0.5rem;
  background: var(--line);
}
.settings-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 550;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.settings-nav-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.settings-nav-item.is-active {
  color: var(--brand);
  background: rgba(255, 45, 106, 0.1);
  border-color: rgba(255, 45, 106, 0.18);
  font-weight: 650;
}
.settings-nav-item__ico {
  display: inline-flex;
  width: 1.15rem;
  justify-content: center;
  color: inherit;
  opacity: 0.85;
}

.settings-content {
  flex: 1 1 auto;
  min-width: 0;
}
.settings-section { display: none; }
.settings-section.is-active { display: block; }
.settings-card {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
@media (min-width: 640px) {
  .settings-card { padding: 1.65rem 1.75rem; }
}
.settings-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.settings-card__desc {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.settings-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.settings-dl div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.settings-dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.settings-dl dt {
  margin: 0;
  color: #8a8a93;
  font-size: 0.8rem;
}
.settings-dl dd {
  margin: 0;
  font-weight: 650;
  font-size: 0.92rem;
}
@media (max-width: 520px) {
  .settings-dl div { grid-template-columns: 1fr; gap: 0.2rem; }
}
.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.settings-row:first-of-type { padding-top: 0; }
.settings-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.settings-row__label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
}
.settings-row__hint {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.settings-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 45, 106, 0.14);
  border: 1px solid rgba(255, 45, 106, 0.28);
  color: #ffb0c8;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.settings-pill--muted {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #b0b0b8;
}
.settings-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.settings-switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.settings-switch__ui {
  width: 2.7rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.settings-switch__ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.settings-switch input:checked + .settings-switch__ui {
  background: var(--brand);
  border-color: rgba(255, 120, 160, 0.5);
}
.settings-switch input:checked + .settings-switch__ui::after {
  transform: translateX(1.15rem);
}
.settings-switch input:focus-visible + .settings-switch__ui {
  outline: 2px solid rgba(255, 45, 106, 0.55);
  outline-offset: 2px;
}

.settings-card--2fa {
  margin-top: 1rem;
}
.settings-2fa__status .btn {
  margin-top: 0.35rem;
}
.settings-2fa__disable {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
  max-width: 22rem;
}
.settings-2fa__setup {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.settings-2fa__steps {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.settings-2fa__steps strong { color: #e8e8ec; font-weight: 650; }
.settings-2fa__qr-wrap {
  display: inline-flex;
  padding: 0.65rem;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 0.85rem;
}
.settings-2fa__qr {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 6px;
}
.settings-2fa__secret-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}
.settings-2fa__secret {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  word-break: break-all;
}
.settings-2fa__field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  max-width: 16rem;
}
.settings-2fa__field span {
  color: #9a9aa3;
  font-size: 0.78rem;
  font-weight: 650;
}
.settings-2fa__field input {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-align: center;
}
.settings-2fa__field input:focus {
  outline: none;
  border-color: rgba(255, 45, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 45, 106, 0.12);
}
.settings-2fa__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.settings-2fa__msg {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #ff8aa8;
}
.settings-2fa__msg.is-ok { color: #7ddea0; }

.account-page {
  position: relative;
  padding: 2rem 0 3.5rem;
  overflow: hidden;
}
.account-page__glow {
  position: absolute;
  inset: -10% 10% auto;
  height: 18rem;
  background: radial-gradient(ellipse at top, rgba(255, 45, 106, 0.16), transparent 70%);
  pointer-events: none;
}
.account-shell { position: relative; z-index: 1; max-width: 52rem; }
.account-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
}
.account-hero--compact { margin-bottom: 1.1rem; }
.account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.account-hero__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.account-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}
.account-hero p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.account-tile {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.account-tile:hover {
  border-color: rgba(255, 45, 106, 0.35);
  background: rgba(255, 45, 106, 0.07);
  transform: translateY(-1px);
  color: inherit;
}
.account-tile h2 {
  margin: 0;
  font-size: 1rem;
}
.account-tile p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.account-panel {
  margin-top: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.account-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.account-dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.account-dl div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}
.account-dl dt {
  margin: 0;
  color: #8a8a93;
  font-size: 0.8rem;
}
.account-dl dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.account-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
@media (max-width: 640px) {
  .account-grid { grid-template-columns: 1fr; }
  .account-dl div { grid-template-columns: 1fr; gap: 0.15rem; }
  .header-user-name { display: none; }
}

.lk-dd__trigger svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-soft);
}
.lk-dd.is-open .lk-dd__trigger {
  border-color: rgba(255, 45, 106, 0.4);
  color: #fff;
  background: rgba(255, 45, 106, 0.1);
}
.lk-dd.is-open .lk-dd__trigger svg { transform: rotate(180deg); }
.lk-dd__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease-soft),
    transform 0.28s var(--ease-soft),
    visibility 0.28s;
}
.lk-dd.is-open .lk-dd__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.lk-dd__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.55rem 0.65rem;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  text-align: left;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.lk-dd__item + .lk-dd__item {
  margin-top: 2px;
}
/* Active = text + dot only (no fill — avoids clash with hover) */
.lk-dd__item.is-active {
  background: transparent;
  color: var(--brand);
}
.lk-dd__item:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.lk-dd__item.is-active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
}

/* Sort dropdown active = filled pill (overrides generic text+dot active) */
.lk-dd--sort .lk-dd__item--sort.is-active {
  background: var(--brand);
  color: #fff;
}
.lk-dd--sort .lk-dd__item--sort.is-active .lk-dd__item-ico {
  color: #fff;
}
.lk-dd--sort .lk-dd__item--sort.is-active::after {
  display: none;
}
.lk-dd--sort .lk-dd__item--sort:hover {
  background: rgba(255, 45, 106, 0.12);
  color: #ffb0c8;
}
.lk-dd--sort .lk-dd__item--sort:hover .lk-dd__item-ico {
  color: var(--brand);
}
.lk-dd--sort .lk-dd__item--sort.is-active:hover {
  background: var(--brand);
  color: #fff;
}
.lk-dd--sort .lk-dd__item--sort.is-active:hover .lk-dd__item-ico {
  color: #fff;
}

/* Full-width form dropdown (Contact subject, etc.) */
.lk-dd--field {
  display: block;
  width: 100%;
  z-index: 5;
}
.lk-dd--field.is-open { z-index: 40; }
.lk-dd__trigger--field {
  width: 100%;
  min-height: 44px;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transform: none;
}
.lk-dd__trigger--field:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
}
.lk-dd--field.is-open .lk-dd__trigger--field,
.lk-dd__trigger--field:focus-visible {
  border-color: rgba(255, 45, 106, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px var(--brand-soft);
  color: #fff;
}
.lk-dd__trigger--field svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  flex: 0 0 auto;
}
.lk-dd__trigger--field [data-lk-dd-label] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.lk-dd__menu--field {
  left: 0;
  right: 0;
  min-width: 100%;
  width: 100%;
  padding: 0.45rem;
  border-radius: 14px;
  border-color: rgba(255, 45, 106, 0.22);
  background: rgba(14, 14, 14, 0.96);
}
.lk-dd__menu--field .lk-dd__item {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-size: 0.88rem;
}

/* Auth — standalone custom pages (no site header/footer) */
.auth-body {
  min-height: 100vh;
  background: #050505;
}
.auth-body main { display: none; }

.auth-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.auth-shell__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 70% at 50% -12%, rgba(255, 45, 106, 0.06), transparent 62%),
    radial-gradient(ellipse 60% 50% at 80% 85%, rgba(255, 45, 106, 0.025), transparent 68%),
    linear-gradient(180deg, #0a0a0a 0%, #070707 50%, #050505 100%);
}
.auth-shell__wash {
  position: absolute;
  inset: -10% -20% auto;
  height: 58%;
  background:
    linear-gradient(115deg, rgba(255, 45, 106, 0.035) 0%, transparent 48%),
    linear-gradient(250deg, transparent 45%, rgba(255, 77, 128, 0.02) 100%);
  filter: blur(8px);
  animation: authWash 14s var(--ease-soft) infinite alternate;
}
.auth-shell__horizon {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(920px, 120%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 106, 0.06) 30%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 45, 106, 0.06) 70%,
    transparent 100%
  );
  opacity: 0.4;
  filter: blur(1px);
  animation: authHorizon 8s ease-in-out infinite alternate;
}
.auth-shell__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.auth-shell__orb--a {
  width: 380px;
  height: 380px;
  left: calc(50% - 280px);
  top: 8%;
  background: rgba(255, 45, 106, 0.1);
  opacity: 0.35;
  animation: authOrbA 11s ease-in-out infinite alternate;
}
.auth-shell__orb--b {
  width: 280px;
  height: 280px;
  left: calc(50% + 90px);
  bottom: 10%;
  background: rgba(255, 77, 128, 0.07);
  opacity: 0.3;
  animation: authOrbB 13s ease-in-out infinite alternate;
}
.auth-shell__orb--c {
  width: 200px;
  height: 200px;
  left: calc(50% - 40px);
  top: 48%;
  background: rgba(255, 255, 255, 0.025);
  opacity: 0.28;
  animation: authOrbC 9s ease-in-out infinite alternate;
}
.auth-shell__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 42%, transparent 28%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.4) 100%);
}
.auth-shell__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes authWash {
  from { transform: translateY(0) scale(1); opacity: 0.85; }
  to { transform: translateY(12px) scale(1.04); opacity: 1; }
}
@keyframes authHorizon {
  from { opacity: 0.35; transform: translateX(-50%) scaleX(0.92); }
  to { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
}
@keyframes authOrbA {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(28px, 18px) scale(1.1); }
}
@keyframes authOrbB {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-22px, -16px) scale(1.08); }
}
@keyframes authOrbC {
  from { transform: translate(0, 0) scale(0.95); }
  to { transform: translate(10px, -20px) scale(1.12); }
}
@keyframes authLogoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes authCardIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes authLineIn {
  from { transform: scaleX(0.2); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.auth-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  animation: authLogoIn 0.55s var(--ease-soft) both;
}
.auth-top__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a0a0a0;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s var(--ease-soft);
}
.auth-top__back:hover {
  color: #fff;
  border-color: rgba(255, 45, 106, 0.45);
  background: var(--brand-soft);
  transform: translateX(-2px);
}

.auth-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 1.5rem, 420px);
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}

.auth-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-logo {
  display: inline-block;
  margin: 0 0 1.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.45rem, 8vw, 3.15rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: lowercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  animation: authLogoIn 0.7s var(--ease-soft) 0.05s both;
  transition: transform 0.28s var(--ease-soft), opacity 0.22s ease;
}
.auth-logo span {
  color: var(--brand);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.auth-logo::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 45, 106, 0.05),
    rgba(255, 45, 106, 0.45) 35%,
    rgba(255, 45, 106, 0.45) 65%,
    rgba(255, 45, 106, 0.05)
  );
  transform-origin: center;
  box-shadow: 0 0 14px rgba(255, 45, 106, 0.18);
  animation: authLineIn 0.85s var(--ease-soft) 0.35s both;
}
.auth-logo:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}
.auth-logo:hover::after {
  box-shadow: 0 0 18px rgba(255, 45, 106, 0.28);
}

.auth-aside,
.auth-page,
.auth-page__glow,
.auth-page__inner { display: none; }

.auth-card {
  position: relative;
  width: 100%;
  padding: 1.75rem 1.4rem 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 45, 106, 0.02) 0%, transparent 32%),
    rgba(12, 12, 12, 0.68);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 28px 80px rgba(0, 0, 0, 0.45);
  animation: authCardIn 0.75s var(--ease-soft) 0.18s both;
}
.auth-card::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 45, 106, 0.28),
    transparent
  );
  opacity: 0.7;
}
@media (min-width: 520px) {
  .auth-card { padding: 2rem 1.85rem 1.75rem; }
}
.auth-card__head {
  text-align: center;
  margin-bottom: 1.4rem;
}
.auth-card__eyebrow {
  margin: 0 0 0.45rem !important;
  color: #d8899e !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.auth-card__head h1 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.auth-card__head p {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.auth-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem) 1.35rem;
  color: #4a4a4a;
  font-size: 0.76rem;
  animation: authLogoIn 0.6s var(--ease-soft) 0.35s both;
}
.auth-foot nav {
  display: flex;
  gap: 0.85rem;
}
.auth-foot a {
  color: #5a5a5a;
  transition: color 0.2s ease;
}
.auth-foot a:hover { color: var(--brand); }

.auth-alert {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.4;
}
.auth-alert--error {
  color: #ffb4b4;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.28);
}
.auth-alert--info {
  color: #f5d0dc;
  background: rgba(255, 45, 106, 0.1);
  border: 1px solid rgba(255, 45, 106, 0.28);
}
.auth-social {
  margin: 0;
}
.auth-social--below {
  margin: 1.15rem 0 0;
}
.auth-social__list {
  display: grid;
  gap: 0.55rem;
}
.auth-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    border-color 0.22s var(--ease-soft),
    background 0.22s var(--ease-soft),
    transform 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft);
}
.auth-social__btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.auth-social__btn:active {
  transform: translateY(0);
}
.auth-social__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.auth-social__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.auth-social__btn--x:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.auth-social__btn--google:hover {
  border-color: rgba(66, 133, 244, 0.45);
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.12);
}
.auth-social__divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.95rem;
  color: #666;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-social__divider::before,
.auth-social__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}
.auth-social__divider span {
  flex: 0 0 auto;
}

.auth-form {
  display: grid;
  gap: 1rem;
}
.auth-field {
  display: grid;
  gap: 0.42rem;
}
.auth-field > span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f8f8f;
}
.auth-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  outline: 0;
  transition:
    border-color var(--dur) var(--ease-soft),
    background var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft);
}
.auth-field input::placeholder { color: #5e5e5e; }
.auth-field input:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.auth-field input:focus {
  border-color: rgba(255, 45, 106, 0.6);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(255, 45, 106, 0.12);
}
.auth-field input.is-invalid {
  border-color: rgba(255, 100, 100, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.1);
}
.auth-field input.is-valid {
  border-color: rgba(80, 200, 140, 0.45);
}
.auth-field__otp {
  letter-spacing: 0.35em !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem !important;
}
.auth-hint {
  display: block;
  margin: 0.15rem 0 0 0.35rem;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #888;
}
.auth-hint--bad { color: #ff8f8f; }
.auth-hint--ok { color: #7dcea0; }

.auth-pass-meter {
  margin: 0.45rem 0 0;
  padding: 0 0.15rem;
}
.auth-pass-meter__bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.auth-pass-meter__bars span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.22s var(--ease-soft), box-shadow 0.22s ease;
}
.auth-pass-meter[data-level="bad"] .auth-pass-meter__bars span:nth-child(1) {
  background: #ff5a5a;
  box-shadow: 0 0 8px rgba(255, 90, 90, 0.25);
}
.auth-pass-meter[data-level="weak"] .auth-pass-meter__bars span:nth-child(-n+2) {
  background: #ff8a4c;
  box-shadow: 0 0 8px rgba(255, 138, 76, 0.2);
}
.auth-pass-meter[data-level="fair"] .auth-pass-meter__bars span:nth-child(-n+2) {
  background: #e6c15a;
}
.auth-pass-meter[data-level="fair"] .auth-pass-meter__bars span:nth-child(3) {
  background: #d4b24a;
}
.auth-pass-meter[data-level="good"] .auth-pass-meter__bars span:nth-child(-n+3) {
  background: #5ecf8e;
}
.auth-pass-meter[data-level="strong"] .auth-pass-meter__bars span {
  background: #3dd68c;
  box-shadow: 0 0 8px rgba(61, 214, 140, 0.18);
}
.auth-pass-meter__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.auth-pass-meter[data-level="bad"] .auth-pass-meter__label { color: #ff8f8f; }
.auth-pass-meter[data-level="weak"] .auth-pass-meter__label { color: #ffb07a; }
.auth-pass-meter[data-level="fair"] .auth-pass-meter__label { color: #e6c15a; }
.auth-pass-meter[data-level="good"] .auth-pass-meter__label { color: #7dcea0; }
.auth-pass-meter[data-level="strong"] .auth-pass-meter__label { color: #5ee0a0; }
.auth-pass-meter__tip {
  font-weight: 500;
  color: #777;
  letter-spacing: 0;
}
.auth-field__pass {
  position: relative;
}
.auth-field__pass input {
  padding-right: 3.1rem;
}
.auth-pass-toggle {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #9a9a9a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.22s var(--ease-soft),
    background 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft),
    transform 0.22s var(--ease-soft);
}
.auth-pass-toggle:hover {
  color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 0 0 1px rgba(255, 45, 106, 0.25);
}
.auth-pass-toggle:active {
  transform: translateY(-50%) scale(0.94);
}
.auth-pass-toggle.is-visible {
  color: var(--brand);
  background: var(--brand-soft);
}
.auth-pass-toggle svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  pointer-events: none;
}
.auth-pass-toggle__on { display: block; }
.auth-pass-toggle__off { display: none; }
.auth-pass-toggle.is-visible .auth-pass-toggle__on { display: none; }
.auth-pass-toggle.is-visible .auth-pass-toggle__off { display: block; }
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.1rem;
}
.auth-link {
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 650;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.auth-link:hover { opacity: 0.85; }
.auth-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(255, 45, 106, 0.22);
  transition:
    transform 0.22s var(--ease-soft),
    box-shadow 0.22s var(--ease-soft),
    background 0.22s ease;
}
.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 45, 106, 0.3);
}
.auth-submit:active {
  transform: translateY(0);
}
.auth-form .lk-check--block {
  margin-top: 0.1rem;
}
.btn-ghost.is-active {
  border-color: rgba(255, 45, 106, 0.4);
  color: #fff;
  background: rgba(255, 45, 106, 0.1);
}
.auth-switch {
  margin: 1.35rem 0 0;
  text-align: center;
  color: #6e6e6e;
  font-size: 0.9rem;
}
.auth-switch .auth-link {
  margin-left: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .auth-shell__wash,
  .auth-shell__horizon,
  .auth-shell__orb,
  .auth-logo,
  .auth-logo::after,
  .auth-card,
  .auth-top,
  .auth-foot {
    animation: none !important;
  }
}

/* Legal / Help / Contact — rich layout */
.legal-page {
  position: relative;
  isolation: isolate;
  padding: 0 0 3.25rem;
  overflow: hidden;
}
.legal-page__glow {
  position: absolute;
  inset: -48px 0 auto 0;
  height: 420px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.75) 0%,
      rgba(10, 10, 10, 0.28) 18%,
      transparent 42%
    ),
    radial-gradient(ellipse 72% 95% at 18% 12%, rgba(255, 45, 106, 0.085), transparent 64%),
    radial-gradient(ellipse 58% 85% at 88% 6%, rgba(255, 45, 106, 0.045), transparent 60%),
    linear-gradient(180deg, rgba(255, 45, 106, 0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.legal-shell {
  display: grid;
  gap: 1.75rem;
  padding-top: 1.5rem;
  width: min(100% - 1.25rem, 1120px);
}
@media (min-width: 960px) {
  .legal-shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    padding-top: 2rem;
  }
}
.legal-shell__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .legal-shell__side {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}
.legal-shell__main {
  min-width: 0;
}

.legal-rail,
.legal-toc,
.legal-side-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(16, 16, 16, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem;
}
.legal-rail__label,
.legal-toc__label {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}
.legal-rail ul,
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.legal-rail__link {
  display: grid;
  gap: 0.12rem;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.legal-rail__title {
  color: #e8e8e8;
  font-size: 0.88rem;
  font-weight: 700;
}
.legal-rail__desc {
  color: #777;
  font-size: 0.74rem;
}
.legal-rail__link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.legal-rail__link.is-active {
  background: var(--brand-soft);
}
.legal-rail__link.is-active .legal-rail__title { color: var(--brand); }
.legal-toc ol { gap: 0.25rem; counter-reset: none; }
.legal-toc a {
  display: block;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  color: #9a9a9a;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}
.legal-toc a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.legal-side-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 750;
}
.legal-side-card p,
.legal-side-card li {
  margin: 0;
  color: #8f8f8f;
  font-size: 0.8rem;
  line-height: 1.45;
}
.legal-side-card ul {
  margin: 0 0 0.75rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}
.legal-side-card .btn { margin-top: 0.35rem; }

.legal-hero--rich {
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 45, 106, 0.1), transparent 55%),
    rgba(14, 14, 14, 0.85);
}
.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.legal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(255, 45, 106, 0.25);
}
.legal-pill--muted {
  color: #9a9a9a;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.legal-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.legal-hero p {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.legal-callout {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 106, 0.28);
  background: rgba(255, 45, 106, 0.08);
  color: #f0c4d2;
  font-size: 0.88rem;
  line-height: 1.5;
}
.legal-callout--soft {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #bdbdbd;
}
.legal-callout strong { color: #fff; }

.legal-doc {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.78);
  padding: 0.35rem 1.15rem 1.25rem;
}
@media (min-width: 700px) {
  .legal-doc { padding: 0.5rem 1.55rem 1.55rem; }
}
.legal-doc__section {
  padding: 1.15rem 0 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.legal-doc__section:first-child { border-top: 0; }
.legal-doc__section h2 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  color: #fff;
}
.legal-doc__section h3 {
  margin: 0.85rem 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #e8e8e8;
}
.legal-doc__section p,
.legal-doc__section li {
  color: #b0b0b0;
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-doc__section p { margin: 0 0 0.7rem; }
.legal-doc__section ul,
.legal-doc__section ol {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}
.legal-doc__section a {
  color: var(--brand);
  font-weight: 650;
}
.legal-doc__section a:hover { opacity: 0.88; }
.legal-doc__section code {
  font-size: 0.84em;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f2f2;
}
.legal-agent {
  margin: 0.35rem 0 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 45, 106, 0.35);
  background: rgba(255, 45, 106, 0.05);
}
.legal-agent p { margin: 0 0 0.3rem; }
.legal-agent__note {
  color: #888 !important;
  font-size: 0.8rem !important;
}
.legal-doc__foot {
  margin-top: 1rem;
  color: #777;
  font-size: 0.84rem;
}
.legal-doc__foot a {
  color: var(--brand);
  font-weight: 650;
}

.legal-note {
  margin: 0.85rem 0 0;
  color: #777;
  font-size: 0.82rem;
  line-height: 1.45;
}
.legal-note a {
  color: var(--brand);
  font-weight: 650;
}

.help-page .legal-shell__main {
  min-width: 0;
}
.help-hero {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.help-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.help-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.help-hero > p {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.5;
}
.help-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 34rem;
  padding: 0.4rem 0.45rem 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.help-search:focus-within {
  border-color: rgba(255, 45, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 45, 106, 0.12), 0 14px 36px rgba(0, 0, 0, 0.22);
}
.help-search__ico {
  display: grid;
  place-items: center;
  color: #888;
  flex: 0 0 auto;
}
.help-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  outline: 0;
}
.help-search input::placeholder { color: #777; }
.help-search__clear {
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  font-size: 0.74rem;
  font-weight: 650;
  cursor: pointer;
}
.help-search__clear:hover {
  color: #fff;
  background: rgba(255, 45, 106, 0.16);
}
.help-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
}
.help-topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.3rem 0.75rem 0.3rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ddd;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.help-topic-chip:hover {
  border-color: rgba(255, 45, 106, 0.4);
  background: rgba(255, 45, 106, 0.1);
  color: #fff;
}
.help-topic-chip__ico {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 45, 106, 0.12);
}

.help-side-toc {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.help-side-toc__label {
  margin: 0 0 0.35rem;
  color: #777;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.help-side-toc a {
  color: #bdbdbd;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}
.help-side-toc a:hover {
  color: #fff;
  background: rgba(255, 45, 106, 0.08);
}

.help-grid {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
}
@media (min-width: 640px) {
  .help-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.help-tile {
  display: grid;
  gap: 0.28rem;
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 45, 106, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.03);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.help-tile:hover {
  border-color: rgba(255, 45, 106, 0.4);
  transform: translateY(-3px);
}
.help-tile__ico {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
  border-radius: 10px;
  color: var(--brand);
  background: rgba(255, 45, 106, 0.12);
}
.help-tile__kicker {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.help-tile strong {
  color: #fff;
  font-size: 0.95rem;
}
.help-tile span:last-child {
  color: #888;
  font-size: 0.8rem;
  line-height: 1.4;
}

.help-empty {
  margin: 0 0 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: #999;
  font-size: 0.88rem;
}

.help-group {
  margin-bottom: 1.55rem;
  scroll-margin-top: 5.5rem;
}
.help-group__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.help-group__ico {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 77, 128, 0.35), rgba(255, 45, 106, 0.18));
  border: 1px solid rgba(255, 45, 106, 0.28);
  flex: 0 0 auto;
}
.help-group__head h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}
.help-group__head p {
  margin: 0.2rem 0 0;
  color: #888;
  font-size: 0.8rem;
}

.help-faq {
  display: grid;
  gap: 0.55rem;
}
.help-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.72);
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft),
    box-shadow 0.25s var(--ease-soft);
}
.help-faq__item[open] {
  border-color: rgba(255, 45, 106, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 45, 106, 0.08), transparent 50%),
    rgba(22, 22, 22, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.help-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-size: 0.93rem;
  color: #fff;
  user-select: none;
}
.help-faq__item summary::-webkit-details-marker { display: none; }
.help-faq__q {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.help-faq__chev {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 45, 106, 0.12);
  border: 1px solid rgba(255, 45, 106, 0.22);
  flex: 0 0 auto;
  transition: transform 0.28s var(--ease-soft), background 0.22s ease;
}
.help-faq__item[open] .help-faq__chev {
  transform: rotate(180deg);
  background: rgba(255, 45, 106, 0.22);
}
.help-faq__body {
  padding: 0 1rem 1.05rem;
  animation: helpFaqIn 0.28s var(--ease-soft);
}
.help-faq__body p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.55;
}
@keyframes helpFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.help-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 45, 106, 0.28);
  background:
    radial-gradient(ellipse 70% 120% at 0% 50%, rgba(255, 45, 106, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.03);
}
.help-cta h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 750;
}
.help-cta p {
  margin: 0;
  color: #999;
  font-size: 0.84rem;
}

@media (prefers-reduced-motion: reduce) {
  .help-faq__body,
  .help-faq__chev {
    animation: none;
    transition: none;
  }
}

.auth-field select.auth-select,
.auth-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: 0;
  resize: none;
  transition:
    border-color var(--dur) var(--ease-soft),
    background var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft);
}
.auth-field select.auth-select {
  border-radius: 999px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%239a9a9a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.auth-field textarea {
  min-height: 160px;
  font: inherit;
  line-height: 1.45;
}
.auth-field select.auth-select:focus,
.auth-field textarea:focus {
  border-color: rgba(255, 45, 106, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.contact-form {
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 16, 0.78);
}
.contact-form--rich { padding: 1.4rem 1.25rem 1.3rem; }
.contact-form__grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .contact-form__grid { grid-template-columns: 1fr 1fr; }
}

/* Browse — Videos / Categories / Creators */
.browse-page {
  position: relative;
  isolation: isolate;
  padding: 0 0 3.5rem;
  overflow: hidden;
}
.browse-page__glow {
  position: absolute;
  inset: -48px 0 auto 0;
  height: 360px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.25) 20%, transparent 48%),
    radial-gradient(ellipse 70% 90% at 18% 10%, rgba(255, 45, 106, 0.07), transparent 62%),
    radial-gradient(ellipse 55% 80% at 88% 4%, rgba(255, 45, 106, 0.04), transparent 58%);
  pointer-events: none;
  z-index: -1;
}
.browse-hero {
  padding: 1.6rem 0 1.25rem;
  max-width: 40rem;
}
.browse-hero__eyebrow {
  margin: 0 0 0.4rem;
  color: #d8899e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.browse-hero h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.browse-hero p {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.95rem;
  line-height: 1.45;
}
.browse-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
}
.browse-toolbar .cat-row {
  flex: 1 1 16rem;
  min-width: 0;
  padding-bottom: 0.55rem;
}
.browse-toolbar__sort {
  flex: 0 0 auto;
  padding-top: 0.1rem;
  align-self: center;
}
.browse-empty {
  padding: 3rem 1rem;
  text-align: center;
}
.browse-empty h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}
.browse-empty p {
  margin: 0 0 1rem;
  color: #888;
}
.browse-empty .btn { display: inline-flex; }

.categories-page,
.videos-page,
.home-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 3.25rem;
}
.home-page {
  padding-bottom: 0;
}
.categories-hero,
.videos-hero,
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.25rem;
}
.categories-hero__bg,
.videos-hero__bg,
.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.categories-hero__wash,
.videos-hero__wash,
.home-hero__wash {
  position: absolute;
  inset: -40% -20% auto;
  height: 160%;
  background:
    radial-gradient(circle at 18% 45%, rgba(255, 45, 106, 0.26), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 77, 128, 0.14), transparent 38%),
    linear-gradient(145deg, #241018, #0a0a0a 58%);
  filter: blur(8px);
  opacity: 0.92;
}
.categories-hero__shade,
.videos-hero__shade,
.home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.72) 55%, var(--bg-0) 100%);
}
.categories-hero__inner,
.videos-hero__inner,
.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.85rem 0 1.55rem;
}
@media (min-width: 720px) {
  .categories-hero__inner,
  .videos-hero__inner,
  .home-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.categories-hero__eyebrow,
.videos-hero__eyebrow,
.home-hero__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.categories-hero__copy h1,
.videos-hero__copy h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
}
.home-hero__brand {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.55rem, 6.5vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: lowercase;
  color: #fff;
}
.home-hero__brand span {
  color: var(--brand);
}
.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.home-hero__cta .btn {
  min-height: 40px;
  padding: 0.55rem 1.35rem;
  font-size: 0.86rem;
}
.home-hero__cta .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 45, 106, 0.18);
}
.categories-hero__lead,
.videos-hero__lead,
.home-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: #c4c4cc;
  font-size: 0.98rem;
  line-height: 1.5;
}
.categories-hero__stats,
.videos-hero__stats,
.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.categories-hero__stat,
.videos-hero__stat,
.home-hero__stat {
  min-width: 6.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}
.categories-hero__stat strong,
.videos-hero__stat strong,
.home-hero__stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.categories-hero__stat span,
.videos-hero__stat span,
.home-hero__stat span {
  display: block;
  margin-top: 0.15rem;
  color: #9a9aa3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.videos-page .browse-toolbar {
  margin-top: 0.15rem;
}
.categories-shelf__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}
.categories-shelf__head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.categories-shelf__head p {
  margin: 0.25rem 0 0;
  color: #888;
  font-size: 0.82rem;
}

.category-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.78);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s var(--ease-soft),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  animation: fadeRise 0.55s var(--ease-soft) both;
  animation-delay: calc(min(var(--i, 0), 24) * 0.03s);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 106, 0.38);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}
.cat-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  min-height: 0;
}
.cat-card__glow {
  position: absolute;
  inset: auto -15% -35%;
  width: 65%;
  height: 75%;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.32), transparent 70%);
  pointer-events: none;
}
.cat-card__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  min-height: 1.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #f0f0f0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.cat-card__title {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}
.cat-card__body {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.95rem 1rem;
}
.cat-card__body p {
  margin: 0;
  color: #8f8f8f;
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__meta {
  margin-top: 0.15rem;
  color: #d8899e;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-card:hover .cat-card__title { color: #ffb0c8; }

.creators-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 3.25rem;
}
.creators-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}
.creators-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.creators-hero__wash {
  position: absolute;
  inset: -40% -20% auto;
  height: 160%;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 45, 106, 0.28), transparent 42%),
    radial-gradient(circle at 78% 20%, rgba(255, 77, 128, 0.16), transparent 38%),
    linear-gradient(135deg, #2a1018, #0a0a0a 55%);
  filter: blur(8px);
  opacity: 0.9;
}
.creators-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.72) 55%, var(--bg-0) 100%);
}
.creators-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.35rem 0 1.2rem;
}
@media (min-width: 720px) {
  .creators-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.55rem 0 1.35rem;
  }
}
.creators-hero__copy {
  min-width: 0;
  flex: 1 1 auto;
}
.creators-hero__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
}
.creators-hero__copy h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: #fff;
}
.creators-hero__lead {
  margin: 0;
  max-width: 36rem;
  color: #c4c4cc;
  font-size: 0.96rem;
  line-height: 1.55;
}
.creators-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex: 0 0 auto;
}
.creators-hero__stat {
  min-width: 7.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}
.creators-hero__stat--sort {
  min-width: 9.5rem;
}
.creators-hero__stat strong {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.creators-hero__stat span {
  display: block;
  margin: 0;
  color: #9a9aa3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.creators-toolbar {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.creators-toolbar .cat-row {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-bottom: 0.15rem;
}
.creators-toolbar__sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.creators-toolbar__count {
  margin: 0.15rem 0 0;
  color: #777;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.creators-toolbar__count span { color: #cfcfcf; }
.creators-sort-chip {
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #cfcfd6;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}
.creators-sort-chip.is-active {
  background: rgba(255, 45, 106, 0.16);
  border-color: rgba(255, 45, 106, 0.4);
  color: #ffb0c8;
}

.creator-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .creator-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .creator-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .creator-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.creator-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.78);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s var(--ease-soft),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  animation: fadeRise 0.55s var(--ease-soft) both;
  animation-delay: calc(min(var(--i, 0), 24) * 0.025s);
}
.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 106, 0.38);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}
.creator-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.creator-card__glow {
  position: absolute;
  inset: auto -20% -40%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.35), transparent 70%);
  pointer-events: none;
}
.creator-card__avatar {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.creator-card__avatar--img {
  padding: 0;
  background: #121214;
  backdrop-filter: none;
}
.creator-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.creator-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  min-height: 1.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #f0f0f0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.creator-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0.95rem 1rem;
}
.creator-card__body h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.creator-card__bio {
  margin: 0;
  color: #8f8f8f;
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.creator-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 0.2rem;
  color: #777;
  font-size: 0.74rem;
  font-weight: 600;
}
.creator-card:hover .creator-card__body h2 { color: var(--brand); }
.creator-card:hover .creator-card__avatar {
  border-color: rgba(255, 45, 106, 0.55);
}

.watch-shell { display: none; }

/* YouTube-style watch */
.yt-watch {
  position: relative;
  isolation: isolate;
  padding: 0 0 3rem;
  overflow: hidden;
}
.yt-watch__glow {
  position: absolute;
  left: 0;
  top: -40px;
  width: min(68%, 980px);
  height: 280px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 18% 0%, rgba(255, 45, 106, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
  max-width: calc(100% - 360px);
}
.yt-watch.is-ambient-lit .yt-watch__glow {
  opacity: 1;
}
.yt-watch__primary {
  position: relative;
  z-index: 1;
  min-width: 0;
  isolation: isolate;
}
.yt-watch__side {
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-width: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(10, 10, 10, 0.9) 100%
  );
  border-radius: 14px;
  padding: 0.15rem 0.15rem 0.35rem;
}
.yt-watch__layout {
  width: min(100% - 0.75rem, 1580px);
  margin-inline: auto;
  padding-top: 0.85rem;
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 640px) {
  .yt-watch__layout {
    width: min(100% - 1.25rem, 1580px);
  }
}
@media (min-width: 1100px) {
  .yt-watch__layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem 1.25rem;
    align-items: start;
    padding-left: max(0.5rem, calc((100vw - 1580px) / 2 * 0.35));
  }
}
@media (min-width: 1400px) {
  .yt-watch__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    width: min(100% - 1.5rem, 1680px);
    padding-left: max(0.35rem, calc((100vw - 1680px) / 2 * 0.55));
  }
}
.yt-player-shell__video {
  width: 100%;
  vertical-align: middle;
}
.yt-player-shell--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 42vw, 420px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 45, 106, 0.12), transparent 70%),
    rgba(0, 0, 0, 0.45);
}
.yt-player-shell__empty {
  text-align: center;
  padding: 1.5rem;
  max-width: 28rem;
}
.yt-player-shell__empty strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.yt-player-shell__empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

.yt-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.yt-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.95rem;
}
.yt-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.yt-channel__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
  overflow: hidden;
  background: #1a1a1a;
}
.yt-channel__avatar--img {
  display: block;
}
.yt-channel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-channel__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}
.yt-channel__text strong {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
}
.yt-channel__text small {
  color: #888;
  font-size: 0.76rem;
}
.yt-channel:hover strong { color: var(--brand); }
.yt-subscribe {
  min-height: 36px;
  padding-inline: 1.1rem;
  font-size: 0.84rem;
  cursor: pointer;
}
.yt-subscribe.is-following {
  color: #e8e8e8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.yt-subscribe.is-following:hover {
  border-color: rgba(255, 45, 106, 0.45);
  color: #ff9fba;
  background: rgba(255, 45, 106, 0.1);
}
.yt-subscribe.is-busy {
  opacity: 0.7;
  pointer-events: none;
}
.btn.is-following {
  color: #e8e8e8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.btn.is-following:hover {
  border-color: rgba(255, 45, 106, 0.45);
  color: #ff9fba;
  background: rgba(255, 45, 106, 0.1);
}
.btn.is-busy {
  opacity: 0.7;
  pointer-events: none;
}
.yt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-left: auto;
}
.yt-vote {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.yt-vote .yt-chip--vote {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 36px;
}
.yt-vote .yt-chip--vote + .yt-chip--vote {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.yt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ddd;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.yt-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.yt-chip.is-active {
  border-color: rgba(255, 45, 106, 0.45);
  background: var(--brand-soft);
  color: #fff;
}
.yt-chip--danger:hover {
  border-color: rgba(255, 100, 100, 0.4);
  color: #ffb4b4;
  background: rgba(255, 80, 80, 0.08);
}

.yt-desc {
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}
.yt-desc__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin-bottom: 0.55rem;
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 650;
}
.yt-desc__stats a {
  color: #ddd;
  text-decoration: none;
}
.yt-desc__stats a:hover { color: var(--brand); }
.yt-desc p {
  margin: 0 0 0.7rem;
  color: #b5b5b5;
  font-size: 0.88rem;
  line-height: 1.5;
}
.yt-desc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
}
.yt-desc__tags a {
  color: #7eb6ff;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}
.yt-desc__tags a:hover { color: var(--brand); }

.yt-side__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.yt-side__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.yt-side__head a {
  color: #888;
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}
.yt-side__head a:hover { color: var(--brand); }

.yt-related {
  display: grid;
  gap: 0.7rem;
}
.yt-related__item {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  animation: fadeRise 0.45s var(--ease-soft) both;
  animation-delay: calc(var(--i, 0) * 0.03s);
}
@media (max-width: 1099px) {
  .yt-related {
    grid-template-columns: 1fr;
  }
  @media (min-width: 700px) {
    .yt-related {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}
.yt-related__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.yt-related__dur {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}
.yt-related__meta h3 {
  margin: 0 0 0.25rem;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-related__meta p {
  margin: 0;
  color: #888;
  font-size: 0.76rem;
  line-height: 1.35;
}
.yt-related__item:hover .yt-related__meta h3 { color: var(--brand); }
.yt-related__item:hover .yt-related__thumb {
  box-shadow: 0 0 0 1px rgba(255, 45, 106, 0.35);
}
.yt-related__status {
  margin-top: 0.75rem;
  text-align: center;
  color: #777;
  font-size: 0.78rem;
  font-weight: 600;
}
.yt-related__sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}

.yt-comments {
  margin-top: 1.6rem;
  padding: 1.25rem 1.15rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 45, 106, 0.035) 0%, transparent 42%),
    rgba(255, 255, 255, 0.025);
}
.yt-comments__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1.15rem;
}
.yt-comments__head h2 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.yt-comments__signin,
.yt-comments__empty {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}
.yt-comments__signin a {
  color: var(--brand, #ff2d6a);
  text-decoration: none;
  font-weight: 600;
}
.yt-comments__signin a:hover { text-decoration: underline; }
.yt-comment__edited {
  font-style: normal;
  opacity: 0.65;
  font-weight: 500;
  margin-left: 0.2rem;
}
.yt-comments__sort {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.yt-comments__sort-btn {
  min-height: 30px;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #888;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.yt-comments__sort-btn:hover { color: #fff; }
.yt-comments__sort-btn.is-active {
  background: rgba(255, 45, 106, 0.18);
  color: #fff;
}

.yt-comment-form {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.yt-comment-form__avatar,
.yt-comment__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.yt-comment-form__avatar span,
.yt-comment__avatar span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.yt-comment-form__body {
  min-width: 0;
}
.yt-comment-form__body textarea {
  width: 100%;
  min-height: 42px;
  max-height: 160px;
  resize: none;
  padding: 0.55rem 0.15rem 0.65rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: #fff;
  outline: 0;
  font: inherit;
  line-height: 1.45;
  transition: border-color 0.22s ease, min-height 0.22s ease;
}
.yt-comment-form__body textarea:focus {
  border-bottom-color: var(--brand);
  box-shadow: none;
}
.yt-comment-form.is-open textarea {
  min-height: 72px;
}
.yt-comment-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.yt-comment-form__actions[hidden] { display: none !important; }
.yt-comment-form__actions .btn {
  min-height: 34px;
  padding-inline: 0.95rem;
  font-size: 0.8rem;
}

.yt-comment-list {
  display: grid;
  gap: 0;
}
.yt-comment {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.95rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  transition: background 0.2s ease;
}
.yt-comment:last-child { border-bottom: 0; }
.yt-comment:hover {
  background: rgba(255, 255, 255, 0.015);
}
.yt-comment--new {
  animation: fadeRise 0.4s var(--ease-soft) both;
}
.yt-comment__body { min-width: 0; overflow: hidden; }
.yt-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.55rem;
  margin-bottom: 0.3rem;
}
.yt-comment__meta strong {
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.yt-comment__meta span {
  color: #6e6e6e;
  font-size: 0.74rem;
}
.yt-comment__text {
  margin: 0;
  color: #d4d4d4;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}
.yt-comment__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.15rem;
  margin-top: 0.55rem;
}
.yt-comment__action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 30px;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #888;
  font-size: 0.74rem;
  font-weight: 650;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}
.yt-comment__action:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.yt-comment__action.is-active {
  color: var(--brand);
  background: rgba(255, 45, 106, 0.1);
}
.yt-comment__action--text {
  padding-inline: 0.65rem;
}
.yt-comment__action--danger {
  color: #ff7a9a;
}
.yt-comment__action--danger:hover {
  color: #ffb0c8;
  background: rgba(255, 45, 106, 0.12);
}
.yt-comment.is-editing .yt-comment__actions {
  display: none;
}
.yt-comment__editor {
  margin-top: 0.15rem;
}
.yt-comment__edit-input {
  display: block;
  width: 100%;
  min-height: 4.5rem;
  resize: none;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.yt-comment__edit-input:focus {
  outline: none;
  border-color: rgba(255, 45, 106, 0.45);
}
.yt-comment__edit-input.is-invalid {
  border-color: rgba(255, 100, 100, 0.7);
}
.yt-comment__edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yt-comment-form__body textarea.is-invalid {
  border-bottom-color: rgba(255, 100, 100, 0.7);
}

/* Leakly modal (share / report) — true viewport center */
body.lk-modal-open {
  overflow: hidden;
}
.lk-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: auto;
  overscroll-behavior: contain;
}
.lk-modal[hidden] {
  display: none !important;
}
.lk-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lk-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  margin: auto;
  padding: 1.25rem 1.25rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 45, 106, 0.06) 0%, transparent 28%),
    rgba(14, 14, 14, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 80px rgba(0, 0, 0, 0.55);
  animation: lkModalIn 0.32s var(--ease-soft) both;
}
@keyframes lkModalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.lk-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.lk-modal__eyebrow {
  margin: 0 0 0.25rem;
  color: #d8899e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lk-modal__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.lk-modal__x {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.lk-modal__x:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.lk-modal__lead {
  margin: 0 0 1rem;
  color: #8a8a8a;
  font-size: 0.88rem;
  line-height: 1.4;
}
.lk-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}
.lk-modal__actions .btn {
  min-height: 38px;
  padding-inline: 1rem;
  font-size: 0.84rem;
}

.lk-share__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.lk-share__input {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ddd;
  font-size: 0.82rem;
  outline: 0;
}
.lk-share__input:focus {
  border-color: rgba(255, 45, 106, 0.5);
}
.lk-share__grid {
  display: grid;
  gap: 0.5rem;
}
.lk-share__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lk-share__btn:hover {
  border-color: rgba(255, 45, 106, 0.4);
  background: rgba(255, 45, 106, 0.08);
}
.lk-share__ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.lk-share__ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lk-report__reasons {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.lk-report__option {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lk-report__option:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}
.lk-report__option:has(.lk-radio__input:checked) {
  border-color: rgba(255, 45, 106, 0.55);
  background: rgba(255, 45, 106, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 45, 106, 0.12);
}
.lk-report__option .lk-report__radio,
.lk-report__option .lk-radio {
  padding: 0.72rem 0.9rem;
  border-radius: inherit;
}
.lk-report__option .lk-radio__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd;
}
.lk-report__option:has(.lk-radio__input:checked) .lk-radio__text {
  color: #fff;
}
.lk-report__note {
  display: grid;
  gap: 0.4rem;
}
.lk-report__note > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}
.lk-report__note textarea {
  width: 100%;
  resize: none;
  min-height: 72px;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  outline: 0;
}
.lk-report__note textarea:focus {
  border-color: rgba(255, 45, 106, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 45, 106, 0.12);
}

.creator-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 3.25rem;
}
.creator-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 0 1.75rem;
  margin-bottom: 1.35rem;
}
.creator-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.creator-hero__wash {
  position: absolute;
  inset: -30% -8% auto;
  height: 140%;
  opacity: 0.55;
  filter: blur(2px) saturate(1.15);
  transform: scale(1.08);
}
.creator-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.78) 48%, var(--bg-0) 100%),
    radial-gradient(ellipse 60% 80% at 12% 20%, rgba(255, 45, 106, 0.18), transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 0%, rgba(255, 45, 106, 0.08), transparent 55%);
}
.creator-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding-top: 2.1rem;
}
@media (min-width: 768px) {
  .creator-hero {
    margin-bottom: 1.75rem;
    padding-bottom: 2.1rem;
  }
  .creator-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    text-align: left;
    gap: 1.75rem;
    padding-top: 2.6rem;
  }
}
.creator-hero__avatar {
  position: relative;
  flex: 0 0 auto;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 4px var(--bg-0),
    0 0 0 7px rgba(255, 45, 106, 0.55),
    0 22px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background: #121214;
}
.creator-hero__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.creator-hero__avatar span {
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .creator-hero__avatar {
    width: 9rem;
    height: 9rem;
    font-size: 2.35rem;
  }
}
.creator-hero__info {
  min-width: 0;
  flex: 1;
}
.creator-hero__eyebrow {
  margin: 0 0 0.35rem;
  color: #d8899e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.creator-hero__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
}
@media (min-width: 768px) {
  .creator-hero__title-row { justify-content: flex-start; }
}
.creator-hero__title-row h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.creator-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 106, 0.35);
  background: rgba(255, 45, 106, 0.12);
  color: #ff9fba;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.creator-hero__handle {
  margin: 0.35rem 0 0;
  color: #777;
  font-size: 0.82rem;
}
.creator-hero__bio {
  margin: 0.65rem 0 0;
  max-width: 34rem;
  color: #b5b5b5;
  font-size: 0.98rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .creator-hero__bio { margin-left: 0; }
}
.creator-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.05rem;
}
@media (min-width: 768px) {
  .creator-hero__stats { justify-content: flex-start; }
}
.creator-hero__stat {
  min-width: 5.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}
.creator-hero__stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}
.creator-hero__stat span {
  display: block;
  margin-top: 0.15rem;
  color: #888;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.creator-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.05rem;
}
@media (min-width: 768px) {
  .creator-hero__actions { justify-content: flex-start; }
}

.creator-shelf__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1.05rem;
}
.creator-shelf__head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.creator-shelf__head p {
  margin: 0.25rem 0 0;
  color: #888;
  font-size: 0.82rem;
}
.creator-shelf__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.catalog-grid--creator {
  min-height: 12rem;
}

/* Crawlable SEO copy (home) */
.seo-crawl {
  padding: 2.5rem 0 3.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 45, 106, 0.03), transparent 55%);
}
.seo-crawl__inner {
  max-width: 42rem;
}
.seo-crawl h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ececf1;
}
.seo-crawl p {
  margin: 0 0 0.85rem;
  color: #8b8b96;
  font-size: 0.92rem;
  line-height: 1.65;
}
.seo-crawl__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}
.seo-crawl__links a {
  color: #cfcfd6;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 45, 106, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.seo-crawl__links a:hover {
  color: #fff;
  border-color: var(--brand, #ff2d6a);
}

/* ===== Albums / filters / models hub / shorts ===== */
.albums-page, .album-page { position: relative; isolation: isolate; padding-bottom: 3rem; }
.albums-hero, .album-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.25rem;
}
.albums-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.albums-hero__wash {
  position: absolute; inset: -40% -20% auto; height: 160%;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,45,106,0.24), transparent 42%),
    linear-gradient(145deg, #241018, #0a0a0a 58%);
  filter: blur(8px); opacity: 0.92;
}
.albums-hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.72) 55%, var(--bg-0) 100%);
}
.albums-hero__inner, .album-hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.25rem; padding: 1.85rem 0 1.55rem;
}
.albums-hero__eyebrow, .album-hero__eyebrow {
  margin: 0 0 0.45rem; color: var(--brand); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.albums-hero__copy h1, .album-hero h1 {
  margin: 0 0 0.45rem; font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.045em; color: #fff;
}
.albums-hero__lead, .album-hero__lead { margin: 0; color: #c4c4cc; font-size: 0.98rem; max-width: 34rem; }
.albums-hero__stats { display: flex; gap: 0.65rem; }
.albums-hero__stat {
  min-width: 6.5rem; padding: 0.75rem 0.9rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.35);
}
.albums-hero__stat strong { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.albums-hero__stat span { display: block; margin-top: 0.15rem; color: #9a9aa3; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.album-hero__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.album-grid, .photo-grid {
  display: grid; gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) {
  .album-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .album-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .photo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.album-card, .photo-card {
  position: relative; overflow: hidden; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(14,14,14,0.78);
  text-decoration: none; color: inherit; padding: 0; cursor: pointer;
  transition: transform 0.28s var(--ease-soft), border-color 0.28s ease;
  animation: fadeRise 0.5s var(--ease-soft) both;
  animation-delay: calc(min(var(--i, 0), 24) * 0.03s);
}
.album-card:hover, .photo-card:hover {
  transform: translateY(-3px); border-color: rgba(255,45,106,0.35);
}
.album-card__media, .photo-card {
  aspect-ratio: 1; background: #161616;
}
.album-card__media img, .photo-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.album-card__glow {
  position: absolute; inset: auto -20% -30%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(255,45,106,0.28), transparent 70%);
}
.album-card__count {
  position: absolute; top: 0.65rem; right: 0.65rem;
  padding: 0.2rem 0.55rem; border-radius: 999px;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.68rem; font-weight: 700;
}
.album-card__body { padding: 0.85rem 0.9rem 1rem; }
.album-card__body h2 { margin: 0 0 0.25rem; font-size: 1rem; font-weight: 750; }
.album-card__body p { margin: 0; color: #888; font-size: 0.78rem; }
.photo-card__views {
  position: absolute; left: 0.55rem; bottom: 0.55rem;
  padding: 0.15rem 0.45rem; border-radius: 999px;
  background: rgba(0,0,0,0.5); font-size: 0.65rem; font-weight: 700;
}
.photo-grid--creator { margin-bottom: 2rem; }
.creator-photos { margin-top: 0.5rem; margin-bottom: 0.5rem; }

.photo-lightbox {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.88); padding: 1rem;
}
.photo-lightbox[hidden] { display: none !important; }
.photo-lightbox__img {
  max-width: min(96vw, 1100px); max-height: 88vh;
  object-fit: contain; border-radius: 10px;
}
.photo-lightbox__close, .photo-lightbox__nav {
  position: absolute; border: 0; background: rgba(255,255,255,0.08);
  color: #fff; width: 2.5rem; height: 2.5rem; border-radius: 999px;
  font-size: 1.4rem; cursor: pointer;
}
.photo-lightbox__close { top: 1rem; right: 1rem; }
.photo-lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.photo-lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
body.is-lightbox-open .lk-scrollport { overflow: hidden; }

.browse-filters {
  display: grid; gap: 0.85rem;
  margin: 0 0 1.25rem; padding: 0.95rem 1rem;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.browse-filters__group { display: grid; gap: 0.45rem; }
.browse-filters__label {
  color: #8a8a93; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.browse-filters__chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  overflow-x: auto; padding-bottom: 0.15rem;
}
.filter-chip {
  flex: 0 0 auto; min-height: 32px; padding: 0.35rem 0.8rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04); color: #cfcfd6;
  font-size: 0.78rem; font-weight: 650; text-decoration: none;
}
.filter-chip:hover { border-color: rgba(255,45,106,0.35); color: #fff; }
.filter-chip.is-active {
  background: rgba(255,45,106,0.16); border-color: rgba(255,45,106,0.4); color: #ffb0c8;
}

.creator-card__rank, .creator-card__rating {
  position: absolute; z-index: 2;
  min-height: 1.45rem; padding: 0.15rem 0.5rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.5);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.02em;
}
.creator-card__rank { top: 0.65rem; left: 0.65rem; color: #fff; }
.creator-card__rating { top: 0.65rem; right: 0.65rem; color: #7ddea0; }
.creator-card--hub .creator-card__badge { top: auto; bottom: 0.65rem; right: 0.65rem; }

.shorts-page { padding: 0; }
.shorts-empty { margin: 2rem auto; }
.shorts-feed {
  height: calc(100dvh - var(--header-h));
  overflow-y: auto; scroll-snap-type: y mandatory;
  scrollbar-width: thin;
}
.shorts-feed::-webkit-scrollbar { width: 3px; }
.shorts-slide {
  position: relative; height: calc(100dvh - var(--header-h));
  scroll-snap-align: start; scroll-snap-stop: always;
  overflow: hidden; background: #000;
}
.shorts-slide__media { position: absolute; inset: 0; }
.shorts-slide__video, .shorts-slide__poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.shorts-slide__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}
.shorts-slide__meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.15rem 1.5rem; z-index: 2;
}
.shorts-slide__creator { margin: 0 0 0.35rem; font-size: 0.85rem; font-weight: 700; }
.shorts-slide__creator a { color: #ffb0c8; }
.shorts-slide__meta h2 {
  margin: 0 0 0.35rem; font-size: 1.05rem; font-weight: 750;
  max-width: 28rem; line-height: 1.3;
}
.shorts-slide__stats { margin: 0 0 0.85rem; color: #bdbdbd; font-size: 0.8rem; }
.shorts-slide__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
