/*
 * GoFuckThat — global stylesheet.
 * All component styles live here; views carry no inline CSS.
 * Design system: pure-black surfaces, neon-red accent, Bebas/Barlow type.
 */

:root {
  --bg:          #080808;
  --bg-deep:     #050505;
  --bg-panel:    #0b0b0b;
  --surface:     #0f0f0f;
  --accent:      #FF1744;
  --accent-dark: #d90020;
  --line:        #161616;
  --line-soft:   #1c1c1c;
  --line-input:  #242424;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --maxw: 1800px;
}

/* ── Reset / base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font-body);
  min-height: 100vh;
}

input, button { outline: none; font-family: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
::placeholder { color: #3a3a3a; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #252525; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Layout helpers ───────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.home { padding-top: 28px; padding-bottom: 10px; }

.home-seo {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #161616;
  max-width: 760px;
}
.home-seo h2 {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
}
.home-seo p {
  font-size: 13px;
  line-height: 1.8;
  color: #6a6a6a;
  margin-bottom: 12px;
}
.home-seo strong { color: #8f8f8f; font-weight: 600; }
.home-seo a { color: #9a9a9a; }
.home-seo a:hover { color: var(--accent); }

.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  user-select: none;
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: #fff;
}
.logo__accent { color: var(--accent); }

/* ── Header / nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  height: 58px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-header .logo { font-size: 27px; }
.site-header__divider { width: 1px; height: 26px; background: #1f1f1f; flex-shrink: 0; }

/* ── Primary nav (hover dropdowns) ────────────────────── */
.main-nav { display: flex; align-items: stretch; flex-shrink: 0; }
.main-nav__item { position: relative; display: flex; }
.main-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #b3b3b3;
  padding: 0 14px;
  height: 58px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
}
.main-nav__item:hover .main-nav__trigger { color: #fff; }
/* "For You" — a personalized, signed-in-only entry, accented so it stands apart from the
   evergreen nav. */
.main-nav__trigger--accent { color: var(--accent); }
.main-nav__item:hover .main-nav__trigger--accent { color: var(--accent); filter: brightness(1.25); }
.main-nav__caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .15s ease;
}
.main-nav__item:hover .main-nav__caret { transform: rotate(180deg); }

.main-nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 110;
  min-width: 210px;
  padding: 6px;
  background: #161616;
  border: 1px solid var(--line-input);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .6);
  /* Hidden until the item (or panel) is hovered. A small overlap with the trigger
     keeps the hover bridge so the menu doesn't flicker shut between the two. */
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s;
}
.main-nav__item:hover .main-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .12s ease, transform .12s ease;
}
.main-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 5px;
  color: #ccc;
  font-size: 13px;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
}
.main-nav__link:hover { background: #262626; color: #fff; }
.main-nav__count { color: #666; font-size: 12px; }
.main-nav__link--all {
  margin-top: 4px;
  border-top: 1px solid var(--line-soft);
  border-radius: 0 0 5px 5px;
  color: var(--accent);
  font-weight: 600;
}
.main-nav__link--muted { color: #666; cursor: default; }
.main-nav__link--muted:hover { background: none; color: #666; }

.orient-tabs { margin-left: auto; display: flex; align-items: center; flex-shrink: 0; }
.orient-tab {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: #5a5a5a;
  padding: 0 14px;
  height: 58px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}
.orient-tab:hover { color: #ccc; }
.orient-tab.is-active { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); }

.search { display: flex; flex: 1; max-width: 660px; }
/* Custom search-scope dropdown (native <select> can't be themed when open). */
.search__scope { position: relative; flex-shrink: 0; }
.search__scope-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 39px;
  width: 150px;
  padding: 0 14px;
  background: #1a1a1a;
  border: 1px solid var(--line-input);
  border-right: none;
  color: #ccc;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
}
.search__scope-btn:hover { color: #fff; background: #222; }
.search__scope-btn[aria-expanded="true"] { color: #fff; border-color: var(--accent); }
.search__scope-label { flex: 1; min-width: 0; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search__scope-caret {
  flex-shrink: 0;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .15s ease;
}
.search__scope-btn[aria-expanded="true"] .search__scope-caret { transform: rotate(180deg); }

.search__scope-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  min-width: 220px;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: #161616;
  border: 1px solid var(--line-input);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .6);
}
.search__scope-menu[hidden] { display: none; }
.search__scope-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px 9px 30px;
  border-radius: 5px;
  color: #ccc;
  font-size: 13px;
  font-family: var(--font-body);
  white-space: nowrap;
  cursor: pointer;
}
.search__scope-opt:hover { background: #262626; color: #fff; }
.search__scope-opt.is-selected { color: #fff; }
.search__scope-opt.is-selected::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--accent);
  font-size: 12px;
}
.search__input {
  flex: 1;
  min-width: 0;
  background: #111;
  border: 1px solid var(--line-input);
  border-right: none;
  color: #fff;
  padding: 0 16px;
  height: 39px;
  font-size: 14px;
  font-family: var(--font-body);
}
.search__input:focus { border-color: var(--accent); }
.search__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 22px;
  height: 39px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255, 23, 68, 0.35);
}
.search__btn:hover { background: var(--accent-dark); box-shadow: 0 0 22px rgba(255, 23, 68, 0.55); }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-link {
  background: none;
  border: 1px solid var(--line-input);
  color: #777;
  padding: 0 13px;
  height: 34px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-link:hover { border-color: #444; color: #ccc; }

/* ── Page head + sort ─────────────────────────────────── */
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.page-title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 0.92;
  color: #fff;
}
.page-sub { font-size: 13px; color: #454545; margin-top: 9px; }
.page-sub strong { color: #888; font-weight: 600; }
.page-sub a { color: #888; }
.page-sub a:hover { color: var(--accent); }

.sort { display: flex; align-items: center; }
.sort__label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2d2d2d;
  text-transform: uppercase;
  margin-right: 10px;
}
.sort__btn {
  background: none;
  border: none;
  color: #5a5a5a;
  padding: 0 12px;
  height: 30px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sort__btn:hover { color: #ccc; }
.sort__btn.is-active { color: var(--accent); }

/* ── Category landing grid (thumbnail tiles) ──────────── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #141414;
  transition: transform 0.15s;
}
.cat-tile:hover { transform: translateY(-3px); }
/* category thumb (a random tagged plug's still); #141414 shows when none is set */
.cat-tile__thumb {
  position: absolute;
  inset: 0;
  background: #141414 center / cover no-repeat;
}
.cat-tile__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 52%, rgba(0,0,0,0.4) 100%);
}
.cat-tile__count {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  background: rgba(255, 23, 68, 0.92);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
}
.cat-tile__watermark {
  position: absolute;
  bottom: 6px;
  left: 11px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 46px;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}
.cat-tile__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 13px 13px 12px; }
.cat-tile__name {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 0.95;
}
.cat-tile__meta { display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.cat-tile__dot { width: 5px; height: 5px; background: var(--accent); flex-shrink: 0; }
.cat-tile__videos { font-size: 11px; color: #9a9a9a; font-weight: 500; }
@media (max-width: 1280px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Category directory (text) ────────────────────────── */
.cat-dir__title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 1px;
  color: #fff;
  padding-top: 26px;
}

/* Sticky alphabet rail, parked just under the 58px site header. */
.cat-alpha {
  position: sticky;
  top: 58px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  padding: 14px 0;
  margin-bottom: 6px;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-soft);
}
.cat-alpha__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: #cfcfcf;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.cat-alpha__item:hover { color: #fff; background: #1d1d1d; }
.cat-alpha__item--pill { padding: 0 16px; }
.cat-alpha__item.is-active,
.cat-alpha__item.is-active:hover { background: #fff; color: #000; }
.cat-alpha__item.is-disabled { color: #3a3a3a; pointer-events: none; }

.cat-group { padding: 22px 0; border-top: 1px solid var(--line-soft); }
.cat-group:first-of-type { border-top: none; padding-top: 8px; }
/* scroll-margin keeps the anchored heading clear of the sticky header + rail */
.cat-group { scroll-margin-top: 116px; }
.cat-group__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #161616;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
}
.cat-group__list { columns: 4; column-gap: 40px; }
.cat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  break-inside: avoid;
  padding: 7px 0;
  color: #d4d4d4;
  font-size: 15px;
  text-decoration: none;
}
.cat-row:hover .cat-row__name { color: #fff; text-decoration: underline; }
.cat-row__name { min-width: 0; }
.cat-row__count { flex-shrink: 0; color: #6a6a6a; font-size: 13px; }

@media (max-width: 1100px) { .cat-group__list { columns: 3; } }
@media (max-width: 760px)  { .cat-group__list { columns: 2; column-gap: 28px; } }
@media (max-width: 480px)  { .cat-group__list { columns: 1; } }

/* ── Category page (placeholder hero) ─────────────────── */
.cat-hero { background: var(--bg-panel); border-bottom: 1px solid var(--line); padding: 22px 0 20px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-cond);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.breadcrumb__link { color: #444; }
.breadcrumb__link:hover { color: var(--accent); }
.breadcrumb__muted { color: #444; }
.breadcrumb__sep { color: #262626; }
.breadcrumb__current { color: var(--accent); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid #131313;
  padding: 36px 22px 24px;
  background: var(--bg-deep);
  margin-top: 12px;
}
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; }
.site-footer__top { display: flex; gap: 56px; margin-bottom: 30px; flex-wrap: wrap; }
.site-footer__brand { min-width: 190px; }
.site-footer__brand .logo { font-size: 21px; margin-bottom: 14px; }
.site-footer__tagline { font-size: 12px; color: #6a6a6a; line-height: 1.85; max-width: 185px; }

.footer-col__title {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #5a5a5a;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 9px; }
.footer-col__links a { font-size: 13px; color: #7a7a7a; }
.footer-col__links a:hover { color: var(--accent); }

.site-footer__bottom {
  border-top: 1px solid #111;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer__bottom span { font-size: 11px; color: #555; }

/* ── Category landing: hero row / strip / stats ───────── */
.cat-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
/* Source-site hero: cleanliness score + payment badge sit inline under the blurb. */
.site-hero__badges { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.site-hero__badges .site-facts__score { margin-bottom: 0; }
.btn-accent {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 22px;
  height: 42px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 0 16px rgba(255, 23, 68, 0.35);
  flex-shrink: 0;
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 0 24px rgba(255, 23, 68, 0.55); }

.cat-strip { background: #070707; border-bottom: 1px solid var(--line); }
.cat-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  height: 42px;
}
.cat-strip__inner::-webkit-scrollbar { display: none; }
.cat-strip__label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2e2e2e;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid #1a1a1a;
  margin-right: 4px;
  flex-shrink: 0;
}
.cat-strip__link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid #141414;
  color: #5a5a5a;
  padding: 0 14px;
  height: 42px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.cat-strip__link:hover { color: var(--accent); background: rgba(255, 23, 68, 0.04); }

.stats-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 12px 18px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.stats-bar__main { font-family: var(--font-cond); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.stats-bar__sep { color: #252525; }
.stats-bar__item { font-family: var(--font-cond); font-size: 12px; color: #444; letter-spacing: 0.5px; }
.stats-bar__note {
  margin-left: auto;
  font-family: var(--font-cond);
  font-size: 11px;
  color: #2a2a2a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Section header + video grid ──────────────────────── */
.section { margin-bottom: 38px; }
.section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section__title {
  font-family: var(--font-cond);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__bar { display: inline-block; width: 3px; height: 22px; background: var(--accent); flex-shrink: 0; }
.section__viewall {
  background: none;
  border: 1px solid #222;
  color: #555;
  padding: 5px 14px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.section__viewall:hover { border-color: var(--accent); color: var(--accent); }
.empty-note { color: #3a3a3a; font-size: 14px; padding: 16px 0; }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Video card ───────────────────────────────────────── */
.video-card { position: relative; display: block; background: var(--surface); transition: transform 0.15s; }
.video-card:hover { transform: translateY(-3px); }
.video-card__thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #161616; }
.video-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-card__badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 2px;
}
.video-card__duration {
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.82);
  color: #e0e0e0;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
}
.video-card__play { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity 0.15s ease; }
.video-card:hover .video-card__play { opacity: 1; }
.video-card__play-circle {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.6);
  margin-left: 3px;
}
.video-card__watermark {
  position: absolute;
  bottom: 5px;
  left: 7px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 2px;
}
.video-card__body { display: block; padding: 8px 10px 11px; }
.video-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #ddd;
}
/* The title is the card's primary link: its overlay stretches over the whole card so any
   click that isn't on the source/category links flows through to the plug. */
.video-card__title::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.video-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 7px; font-size: 11px; }
.video-card__site { position: relative; z-index: 4; color: var(--accent); font-weight: 600; }
.video-card__site:hover { text-decoration: underline; }
.video-card__views { color: #4a4a4a; margin-left: auto; }
.video-card__sub { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; font-size: 11px; color: #333; margin-top: 4px; }
.video-card__term { position: relative; z-index: 4; display: inline-flex; align-items: center; gap: 3px; }
.video-card__cat { color: #888; }
.video-card__cat:hover { color: var(--accent); text-decoration: underline; }
.video-card__tag { background: #141414; border: 1px solid #1e1e1e; color: #6a6a6a; font-size: 10px; line-height: 1.6; padding: 1px 6px; }
.video-card__tag:hover { color: var(--accent); border-color: var(--accent); }
/* Bare "+" character that adds the adjacent term to the current listing's filters. */
.video-card__plus { color: #666; font-size: 13px; font-weight: 700; line-height: 1; }
.video-card__plus:hover { color: var(--accent); }
.video-card__age { color: #333; margin-left: auto; white-space: nowrap; }

/* ── Active "combined" refinements bar (above the grid) ── */
.refined { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.refined__label { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #2d2d2d; text-transform: uppercase; }
.refined__chip { display: inline-flex; align-items: center; gap: 7px; line-height: 1; background: rgba(255, 23, 68, 0.10); border: 1px solid rgba(255, 23, 68, 0.35); color: #eee; font-size: 12px; padding: 4px 6px 4px 10px; }
.refined__kind { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 1px; line-height: 1; color: var(--accent); text-transform: uppercase; }
.refined__x { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: #999; border: 1px solid #2a2424; font-size: 12px; line-height: 1; }
.refined__x:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.refined__clear { font-size: 11px; color: #555; margin-left: 2px; }
.refined__clear:hover { color: var(--accent); }

/* ── Site cleanliness dot + payment badge (cards & detail) ── */
.cleanliness-dot { display: inline-flex; align-items: center; gap: 5px; }
.cleanliness-dot__mark { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cleanliness-dot__label { font-size: 10px; font-weight: 600; letter-spacing: 0.3px; color: #6a6a6a; }
.cleanliness-dot--pristine .cleanliness-dot__mark { background: #16c784; box-shadow: 0 0 6px rgba(22,199,132,0.7); }
.cleanliness-dot--clean    .cleanliness-dot__mark { background: #8bd450; }
.cleanliness-dot--moderate .cleanliness-dot__mark { background: #f5a623; }
.cleanliness-dot--heavy    .cleanliness-dot__mark { background: var(--accent); }
.payment-badge { font-family: var(--font-cond); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 1px 5px; border: 1px solid var(--line-input); color: #777; text-transform: uppercase; }
.payment-badge--premium { color: #f5c542; border-color: rgba(245,197,66,0.4); }
.payment-badge--free { color: #16c784; border-color: rgba(22,199,132,0.35); }

/* ── Video detail / watch page ────────────────────────── */
.video-page { padding-top: 22px; padding-bottom: 22px; }
.vd-cols { display: flex; gap: 26px; align-items: flex-start; }
.vd-main { flex: 1; min-width: 0; }
.vd-aside { width: 340px; flex-shrink: 0; }
.vd-more { margin-top: 26px; }

/* Player */
.vd-player { position: relative; aspect-ratio: 16/9; width: 100%; overflow: hidden; background: var(--line); }
.vd-player__video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; pointer-events: none; }
.vd-player__still { position: absolute; inset: 0; display: block; cursor: pointer; }
/* Trailer variant: let the autoplay preview show through; reveal the click-to-source cue on hover. */
.vd-player__still--video .vd-player__scrim,
.vd-player__still--video .vd-player__play { opacity: 0; transition: opacity 0.15s; }
.vd-player__still--video:hover .vd-player__scrim,
.vd-player__still--video:hover .vd-player__play { opacity: 1; }
.vd-player__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-player__scrim { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%); }
.vd-player__watermark { position: absolute; bottom: 14px; left: 16px; font-family: var(--font-display); font-size: 90px; color: rgba(255,255,255,0.05); letter-spacing: 4px; line-height: 1; pointer-events: none; z-index: 1; max-width: 92%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vd-player__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; font-family: var(--font-cond); font-size: 12px; font-weight: 700; padding: 3px 9px; letter-spacing: 2px; }
.vd-player__duration { position: absolute; bottom: 14px; right: 14px; z-index: 2; background: rgba(0,0,0,0.82); color: #e0e0e0; font-size: 14px; font-weight: 700; padding: 3px 10px; }
.vd-player__play { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.vd-player__still:hover .vd-player__play-circle { transform: scale(1.06); }
.vd-player__play-circle { width: 96px; height: 96px; background: rgba(255,23,68,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(255,23,68,0.5); transition: transform 0.15s; }
.vd-player__play-tri { width: 0; height: 0; border-style: solid; border-width: 18px 0 18px 30px; border-color: transparent transparent transparent #fff; margin-left: 7px; }
.vd-player__play-label { background: rgba(0,0,0,0.6); padding: 8px 18px; font-family: var(--font-cond); font-size: 14px; font-weight: 700; letter-spacing: 2px; color: #fff; }

/* Title + meta */
.vd-title { font-size: 24px; font-weight: 700; line-height: 1.3; margin: 20px 0 12px; color: #fff; }
.vd-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.vd-meta__views { font-family: var(--font-cond); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.vd-meta__item { font-size: 13px; color: #555; }
.vd-meta__dot { color: #222; }

/* Actions */
.vd-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 16px 0 22px; }
.vd-btn { display: inline-flex; align-items: center; gap: 7px; background: #111; border: 1px solid var(--line-input); color: #999; padding: 0 16px; height: 44px; font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.vd-btn:hover { border-color: #444; color: #fff; }
.vd-btn--accent { background: var(--accent); color: #fff; border: none; padding: 0 22px; font-size: 15px; letter-spacing: 2px; box-shadow: 0 0 16px rgba(255,23,68,0.35); }
.vd-btn--accent:hover { background: var(--accent-dark); color: #fff; border: none; box-shadow: 0 0 24px rgba(255,23,68,0.55); }
.vd-btn__icon { font-size: 12px; }

/* Source attribution */
.vd-source { display: flex; align-items: center; gap: 14px; background: #0d0d0d; border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 14px 18px; margin-bottom: 20px; }
.vd-source__main { flex: 1; }
.vd-source__label { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #2d2d2d; text-transform: uppercase; margin-bottom: 4px; }
.vd-source__site { font-size: 15px; color: #fff; font-weight: 600; }
.vd-source__note { font-size: 11px; color: #3a3a3a; max-width: 360px; line-height: 1.6; text-align: right; }
.vd-source__site .payment-badge { margin-left: 8px; vertical-align: middle; }

/* Site info panel (cleanliness score + ad/quality breakdown) */
.site-facts { background: #0d0d0d; border: 1px solid var(--line); padding: 16px 18px; }
.site-facts__score { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-cond); font-size: 16px; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px; }
.site-facts__score-dot { width: 11px; height: 11px; border-radius: 50%; }
.site-facts__score--pristine { color: #16c784; } .site-facts__score--pristine .site-facts__score-dot { background: #16c784; box-shadow: 0 0 8px rgba(22,199,132,0.8); }
.site-facts__score--clean    { color: #8bd450; } .site-facts__score--clean    .site-facts__score-dot { background: #8bd450; }
.site-facts__score--moderate { color: #f5a623; } .site-facts__score--moderate .site-facts__score-dot { background: #f5a623; }
.site-facts__score--heavy    { color: var(--accent); } .site-facts__score--heavy .site-facts__score-dot { background: var(--accent); }
.site-facts__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.site-facts__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #0d0d0d; padding: 9px 12px; }
.site-facts__label { font-size: 12px; color: #666; }
.site-facts__value { font-size: 12px; font-weight: 600; color: #cfcfcf; text-align: right; }
@media (max-width: 600px) { .site-facts__grid { grid-template-columns: 1fr; } }

/* Description + tags */
.vd-block { margin-bottom: 20px; }
.vd-block__label { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: #2d2d2d; text-transform: uppercase; margin-bottom: 10px; }
.vd-desc { font-size: 14px; color: #777; line-height: 1.75; max-width: 820px; }
.vd-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vd-tag { display: inline-block; background: #111; border: 1px solid #1e1e1e; color: #5a5a5a; padding: 4px 11px; font-size: 12px; }
a.vd-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.vd-tag--star { color: #c7c7c7; border-color: #2a2424; }
a.vd-tag--star:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Up next */
.vd-aside__head { margin-bottom: 14px; font-size: 13px; }
.vd-up { display: flex; flex-direction: column; gap: 11px; }
.vd-up__item { display: flex; gap: 11px; }
.vd-up__item:hover { opacity: 0.82; }
.vd-up__thumb { position: relative; width: 150px; aspect-ratio: 16/9; flex-shrink: 0; overflow: hidden; background: var(--line); }
.vd-up__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-up__duration { position: absolute; bottom: 5px; right: 5px; background: rgba(0,0,0,0.82); color: #e0e0e0; font-size: 10px; font-weight: 700; padding: 1px 6px; }
.vd-up__body { flex: 1; min-width: 0; padding-top: 1px; }
.vd-up__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; font-weight: 600; line-height: 1.4; color: #ccc; margin-bottom: 5px; }
.vd-up__site { display: block; font-size: 11px; color: var(--accent); font-weight: 600; }
.vd-up__meta { display: block; font-size: 11px; color: #3a3a3a; margin-top: 2px; }

@media (max-width: 980px) {
  .vd-cols { flex-direction: column; }
  .vd-aside { width: 100%; }
}

/* ── Category filter bar (fuq-style) ──────────────────────── */
.section__count { color: #555; font-weight: 600; letter-spacing: 1px; }
/* "See all →" link parked at the right of a For You rail heading. */
.section__more { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }
.section__more:hover { text-decoration: underline; }

.filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 20px;
}
.filterbar__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filterbar__sort { display: flex; align-items: center; gap: 8px; }
.filterbar__sortlabel {
  color: #555;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* dropdown (CSS-only via <details>) */
.fdrop { position: relative; }
.fdrop__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  background: #111;
  border: 1px solid var(--line-input);
  color: #cfcfcf;
  padding: 8px 13px;
  font-size: 13px;
  white-space: nowrap;
  user-select: none;
}
.fdrop__btn::-webkit-details-marker { display: none; }
.fdrop__btn:hover { border-color: #333; }
.fdrop__btn.is-active { border-color: var(--accent); color: #fff; }
.fdrop__caret { font-size: 9px; color: #666; }
.fdrop[open] .fdrop__caret { transform: rotate(180deg); }

.fdrop__menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  white-space: nowrap;
  background: #0d0d0d;
  border: 1px solid var(--line-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  padding: 4px;
}
.fdrop__item {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: #b5b5b5;
}
.fdrop__item:hover { background: #161616; color: #fff; }
.fdrop__item.is-active { color: var(--accent); }

/* ── Pagination ───────────────────────────────────────────── */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 28px 0 8px;
}
.pager__btn, .pager__num {
  min-width: 36px;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #b5b5b5;
  background: #111;
  border: 1px solid var(--line-input);
}
.pager__btn:hover, .pager__num:hover { border-color: #333; color: #fff; }
.pager__num.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pager__gap { color: #444; padding: 0 4px; }

/* ── Community rating badge on cards (bottom-left, like "👍 80%") ─────────── */
.video-card__rating {
  position: absolute;
  bottom: 7px;
  left: 7px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34, 197, 94, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ── Rating / vote widget (video detail page) ────────────────────────────── */
.vd-rating { display: inline-flex; align-items: center; gap: 8px; }
.vd-vote { gap: 6px; }
.vd-vote__count { color: inherit; font-variant-numeric: tabular-nums; }
.vd-vote.is-active { color: #fff; }
.vd-vote--up.is-active { border-color: #22c55e; color: #22c55e; }
.vd-vote--down.is-active { border-color: var(--accent); color: var(--accent); }
.vd-rating.is-voted .vd-vote { cursor: default; }
.vd-rating__pct {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #22c55e;
}

/* ── Report button + modal ───────────────────────────────────────────────── */
.vd-report { display: contents; } /* keep trigger in the flex actions row; modal is fixed */

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.report-modal[hidden] { display: none; }
.report-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); }
.report-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-panel);
  border: 1px solid var(--line-input);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.report-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.report-modal__title { font-family: var(--font-cond); font-size: 22px; font-weight: 700; letter-spacing: 1px; color: #fff; }
.report-modal__x { background: none; border: none; color: #888; font-size: 18px; cursor: pointer; line-height: 1; }
.report-modal__x:hover { color: #fff; }
.report-modal__sub { color: #999; font-size: 13px; margin-bottom: 14px; }
.report-modal__input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--line-input);
  color: #eee;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}
.report-modal__input:focus { outline: none; border-color: var(--accent); }
.report-modal__msg { margin-top: 10px; font-size: 13px; font-weight: 600; }
.report-modal__msg--error { color: var(--accent); }
.report-modal__msg--ok { color: #22c55e; }

/* ── Pornstar profile ─────────────────────────────────── */
.ps-hero { position: relative; background: var(--bg-panel); border-bottom: 1px solid var(--line); overflow: hidden; }
.ps-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 140% at 18% 0%, rgba(255, 23, 68, 0.10) 0%, transparent 55%),
    radial-gradient(90% 120% at 100% 100%, rgba(255, 23, 68, 0.05) 0%, transparent 60%);
}
.ps-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(8, 8, 8, 0.55) 100%); }
.ps-hero__inner { position: relative; padding-top: 16px; padding-bottom: 26px; }
.ps-hero .breadcrumb { margin-bottom: 18px; }
.ps-hero__row { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }

.ps-avatar {
  position: relative; width: 188px; height: 188px; flex-shrink: 0;
  overflow: hidden; background: #141414; box-shadow: 0 0 0 1px #1f1f1f;
  display: flex; align-items: flex-end;
}
.ps-avatar__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ps-avatar__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 58%); }
.ps-avatar__initials {
  position: relative; padding: 0 0 6px 12px;
  font-family: var(--font-display); font-size: 64px; letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.10); line-height: 0.78; pointer-events: none;
}

.ps-info { flex: 1; min-width: 320px; }
.ps-name { font-family: var(--font-display); font-size: 54px; letter-spacing: 2px; line-height: 1; color: #fff; }
.ps-tagline {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 11px;
  font-family: var(--font-cond); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #5a5a5a;
}
.ps-tagline__main { color: var(--accent); font-weight: 700; }
.ps-tagline__sep { color: #242424; }

.ps-stats { display: flex; margin-top: 20px; border: 1px solid #1a1a1a; background: rgba(13, 13, 13, 0.85); width: fit-content; max-width: 100%; flex-wrap: wrap; }
.ps-stat { padding: 11px 24px 10px; border-right: 1px solid #1a1a1a; }
.ps-stat:last-child { border-right: none; }
.ps-stat__num { font-family: var(--font-cond); font-size: 23px; font-weight: 700; color: #fff; line-height: 1; }
.ps-stat__label { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #3a3a3a; text-transform: uppercase; margin-top: 5px; }

.ps-bio { font-size: 14px; color: #878787; line-height: 1.85; max-width: 820px; margin-top: 20px; }
.ps-specialties { margin-top: 18px; }

/* More pornstars */
.ps-others { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
@media (max-width: 1100px) { .ps-others { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .ps-others { grid-template-columns: repeat(3, 1fr); } }
.ps-other:hover { opacity: 0.86; }
.ps-other__face { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #141414; }
.ps-other__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ps-other__initials { position: absolute; left: 11px; bottom: 6px; font-family: var(--font-display); font-size: 40px; letter-spacing: 1px; color: rgba(255, 255, 255, 0.08); line-height: 0.78; }
.ps-other__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%); }
.ps-other__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 11px; }
.ps-other__name { display: block; font-family: var(--font-display); font-size: 19px; letter-spacing: 1px; color: #fff; line-height: 0.95; }
.ps-other__count { display: block; font-size: 11px; color: #9a9a9a; margin-top: 3px; }

@media (max-width: 760px) {
  .ps-name { font-size: 40px; }
  .ps-avatar { width: 130px; height: 130px; }
}
.report-modal__actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }

/* ── Mobile navigation ─────────────────────────────────────────────────────── */
/* Hamburger button — hidden on desktop, revealed when the inline nav collapses below. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  padding: 0 8px;
  background: none;
  border: 1px solid var(--line-input);
  border-radius: 7px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #e8e8e8;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

body.nav-open { overflow: hidden; }

.mobile-nav { position: fixed; inset: 0; z-index: 300; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(86vw, 350px);
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border-right: 1px solid var(--line-soft);
  overflow-y: auto;
  padding-bottom: 28px;
  animation: navSlideIn 0.2s ease;
}
@keyframes navSlideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  background: var(--bg-panel);
  z-index: 1;
}
.mobile-nav__head .logo { font-size: 24px; }
.mobile-nav__close {
  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}
.mobile-nav__close:hover { color: #fff; }

.mobile-nav__orient { display: flex; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.mobile-nav__orient-tab {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 7px;
}
.mobile-nav__orient-tab.is-active { color: #fff; border-color: var(--accent); background: rgba(255, 23, 68, 0.12); }

.mobile-nav__group { border-bottom: 1px solid var(--line); }
.mobile-nav__summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-family: var(--font-cond);
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.mobile-nav__summary::-webkit-details-marker { display: none; }
.mobile-nav__summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}
.mobile-nav__group[open] > .mobile-nav__summary::after { transform: translateY(-35%) rotate(-135deg); }

.mobile-nav__link {
  display: block;
  padding: 11px 18px 11px 30px;
  font-size: 15px;
  color: #cfcfcf;
}
.mobile-nav__link:hover { background: #1a1a1a; color: #fff; }
.mobile-nav__link--all { color: var(--accent); font-weight: 600; }
.mobile-nav__link--accent { color: var(--accent); font-weight: 700; }
.mobile-nav__link--solo {
  padding: 15px 18px;
  font-family: var(--font-cond);
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__account { border-top: 1px solid var(--line-soft); margin-top: 4px; }
.mobile-nav__account-email {
  display: block;
  padding: 13px 18px 4px;
  font-size: 12px;
  color: #777;
  text-transform: none;
  letter-spacing: 0;
  word-break: break-all;
}

/* ── Header account / user menu (top-right) ────────────────────────────────── */
.user-menu { position: relative; flex-shrink: 0; }
.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 10px;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 8px;
  color: #d8d8d8;
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.user-btn:hover { color: #fff; border-color: var(--accent); }
.user-btn__ico { width: 18px; height: 18px; fill: currentColor; }
.user-btn__label { white-space: nowrap; }
.user-btn__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
}
.user-btn__caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}
.user-btn[aria-expanded="true"] .user-btn__caret { transform: translateY(1px) rotate(-135deg); }

.user-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 210px;
  padding: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.user-menu__panel[hidden] { display: none; }
.user-menu__head { padding: 9px 11px 10px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.user-menu__hello { display: block; font-size: 11px; color: #777; text-transform: uppercase; letter-spacing: 1px; }
.user-menu__email { display: block; font-size: 13px; color: #e6e6e6; word-break: break-all; margin-top: 2px; }
.user-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 7px;
  color: #d8d8d8;
  font-size: 14px;
}
.user-menu__link:hover { background: #1f1f1f; color: #fff; }
.user-menu__icon { width: 16px; text-align: center; color: var(--accent); }

@media (max-width: 900px) {
  .site-header__inner { gap: 9px; padding: 0 14px; }
  .site-header .main-nav,
  .site-header__divider,
  .site-header .orient-tabs,
  .site-header .user-menu,
  .site-header .user-btn--guest { display: none; }
  .nav-toggle { display: flex; }
  .search { max-width: none; }
}

/* ── Flash messages ────────────────────────────────────────────────────────── */
.flash {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 14px;
  border: 1px solid;
}
.flash--notice { background: rgba(40, 167, 69, 0.1); border-color: rgba(40, 167, 69, 0.4); color: #d6f5dd; }
.flash--alert  { background: rgba(255, 23, 68, 0.1); border-color: rgba(255, 23, 68, 0.45); color: #ffd6dd; }

/* ── Auth pages (Devise: sign in / sign up / account / passwords) ───────────── */
.auth {
  display: flex;
  justify-content: center;
  padding: 54px 18px 80px;
}
.auth__card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 34px 30px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.auth__title {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}
.auth__sub { margin-top: 8px; color: #9a9a9a; font-size: 14px; }
.auth__form { margin-top: 22px; display: flex; flex-direction: column; gap: 15px; }
.auth__field { display: flex; flex-direction: column; gap: 6px; }
.auth__label {
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cfcfcf;
}
.auth__hint { font-size: 12px; color: #777; }
.auth__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
}
.auth__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.15); }
.auth__readonly {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #9a9a9a;
  font-size: 15px;
  word-break: break-all;
}
.auth__check { display: flex; align-items: center; gap: 8px; color: #bbb; font-size: 14px; cursor: pointer; }
.auth__check input { width: 16px; height: 16px; accent-color: var(--accent); }
.auth__check--block { align-items: flex-start; gap: 11px; }
.auth__check--block input { margin-top: 3px; }
.auth__check-body { display: flex; flex-direction: column; gap: 3px; }
.auth__check-title { color: #eee; font-weight: 600; font-size: 14px; }
.auth__check-desc { color: #8e8e8e; font-size: 13px; line-height: 1.45; }
.auth__prefs { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.auth__section-title {
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 14px;
}
.auth__submit {
  margin-top: 6px;
  height: 46px;
  border: none;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.auth__submit:hover { background: var(--accent-dark); box-shadow: 0 0 22px rgba(255, 23, 68, 0.5); }
.auth__links { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.auth__link { color: #bdbdbd; font-size: 14px; }
.auth__link:hover { color: var(--accent); }
.auth__legal { margin-top: 16px; font-size: 12px; color: #777; line-height: 1.5; }
.auth__legal a { color: #aaa; text-decoration: underline; }
.auth__errors {
  background: rgba(255, 23, 68, 0.08);
  border: 1px solid rgba(255, 23, 68, 0.4);
  border-radius: 9px;
  padding: 12px 14px;
  color: #ffd6dd;
}
.auth__errors-head { font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.auth__errors-list { margin: 0; padding-left: 18px; font-size: 13px; }
.auth__danger { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.auth__danger-label { font-family: var(--font-cond); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: #e0e0e0; }
.auth__danger-btn {
  margin-top: 12px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid rgba(255, 23, 68, 0.5);
  border-radius: 8px;
  color: #ff6b80;
  font-size: 14px;
  cursor: pointer;
}
.auth__danger-btn:hover { background: rgba(255, 23, 68, 0.12); color: #fff; }

/* ── Favorites ─────────────────────────────────────────────────────────────── */
/* Active state for the detail-page favorite + the save-search toggle. */
.fav-toggle.is-favorited { color: var(--accent); border-color: rgba(255, 23, 68, 0.5); }

/* "Save search" button in the filter bar. */
.filterbar__save { margin-left: auto; display: flex; align-items: center; }
.savebar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 8px;
  color: #cfcfcf;
  font-size: 13px;
  font-family: var(--font-cond);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.savebar__btn:hover { color: #fff; border-color: var(--accent); }
.savebar__btn.is-favorited { color: var(--accent); border-color: rgba(255, 23, 68, 0.5); }

/* Follow toggle (pornstar / tag / category subscriptions). Pill button; turns accent when active. */
.cat-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ps-follow { margin-top: 16px; }
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 18px;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 999px;
  color: #cfcfcf;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.follow-btn:hover { color: #fff; border-color: var(--accent); }
.follow-btn.is-favorited,
.btn-accent.fav-toggle.is-favorited,
.btn-ghost.fav-toggle.is-favorited { color: #fff; background: var(--accent); border-color: var(--accent); }
/* Subtle ghost variant used on category/tag heroes next to the accent "Browse all". */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid var(--line-input);
  border-radius: 8px;
  color: #cfcfcf;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-ghost:hover { color: #fff; border-color: var(--accent); }

/* My Favorites — followed terms render as a chip cloud per kind. */
.follow-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.follow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-radius: 999px;
}
.follow-chip__link { color: #e6e6e6; font-size: 14px; }
.follow-chip__link:hover { color: var(--accent); }
.follow-chip__remove {
  background: none;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
}
.follow-chip__remove:hover { color: var(--accent); }
.follow-group { margin-bottom: 20px; }
.follow-group__label {
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
}

/* My Favorites / Watch history — saved video cards carry an overlay ✕ remove control. */
.fav-item { position: relative; }
/* button_to wraps its button in a form; collapse the form so the absolute ✕ resolves to .fav-item. */
.fav-remove-form { display: contents; }
.fav-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  /* Above the card's stretched title link (z-index 3) and its sub-links (z-index 4) so the
     ✕ is clickable rather than triggering navigation to the video. */
  z-index: 5;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid var(--line-input);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.15s ease, transform 0.15s ease;
}
.fav-remove:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }

/* My Favorites — saved searches list. */
.saved-searches { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.saved-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}
.saved-search__link {
  flex: 1;
  min-width: 0;
  color: #e6e6e6;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.saved-search__link::before { content: "☆ "; color: var(--accent); }
.saved-search__link:hover { color: var(--accent); }
.saved-search__remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--line-input);
  border-radius: 50%;
  color: #888;
  font-size: 12px;
  cursor: pointer;
}
.saved-search__remove:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Share popover (video detail) ──────────────────────────────────────────── */
.vd-share { position: relative; display: inline-flex; }
.vd-share__menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 80;
  min-width: 180px;
  padding: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.vd-share__menu[hidden] { display: none; }
.vd-share__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 11px;
  border: none;
  background: none;
  border-radius: 7px;
  color: #d8d8d8;
  font-size: 14px;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.vd-share__item:hover { background: #1f1f1f; color: #fff; }
.vd-share__icon { width: 18px; text-align: center; font-size: 14px; }
