:root {
  --ink: #121214;
  --muted: #60606a;
  --line: rgba(255, 255, 255, .72);
  --soft: rgba(255, 255, 255, .62);
  --accent: #c5164d;
  --accent-dark: #a80d3d;
  --glass: rgba(255, 255, 255, .58);
  --glass-strong: rgba(255, 255, 255, .82);
  --glass-line: rgba(255, 255, 255, .78);
  --glass-shadow: 0 20px 55px rgba(31, 20, 27, .09), inset 0 1px 0 rgba(255, 255, 255, .88);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(18, 18, 20, .09);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { background: #f8f7fa; color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 8% 8%, rgba(255, 211, 225, .7), transparent 28rem), radial-gradient(circle at 94% 26%, rgba(222, 216, 255, .62), transparent 30rem), linear-gradient(180deg, #fbfafc 0, #f6f5f8 62%, #fbfafc 100%); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
.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; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(260px, 650px) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 0;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 12px 36px rgba(31, 20, 27, .07), inset 0 -1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(24px) saturate(165%);
}
.brand { display: inline-flex; align-items: baseline; font-size: 27px; font-weight: 850; }
.brand b { color: var(--accent); }
.brand-small { font-size: 22px; }
.header-search, .hero-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 25px rgba(31, 20, 27, .05);
  backdrop-filter: blur(16px) saturate(140%);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.header-search:focus-within, .hero-search:focus-within { border-color: #c7c7ce; box-shadow: 0 0 0 5px rgba(18, 18, 20, .05); }
.header-search input, .hero-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); }
.header-search input { padding: 12px 18px; }
.header-search button, .hero-search button { border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 750; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.header-search button { margin: 4px; padding: 8px 18px; }
.header-search button:hover, .hero-search button:hover { transform: scale(1.02); }
.site-header nav { display: flex; gap: 12px; color: #35363b; font-size: 14px; font-weight: 650; }
.site-header nav a { display: inline-flex; min-height: 44px; align-items: center; padding-inline: 5px; transition: color .2s ease, transform .2s var(--ease); }
.site-header nav a:hover { color: var(--accent); }
.home-page .site-header { grid-template-columns: auto 1fr; }
.home-page .header-search { display: none; }
.home-page .site-header nav { justify-self: end; }

main { min-height: 70vh; }
.hero {
  padding: clamp(38px, 3vw, 56px) max(20px, calc((100vw - 1160px) / 2));
  text-align: center;
  background: radial-gradient(circle at 50% -10%, rgba(255, 218, 230, .8) 0, rgba(255, 237, 243, 0) 47%);
}
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.hero h1, .page-heading h1 { margin: 0; line-height: .98; }
.hero h1 { font-size: clamp(42px, 5vw, 68px); }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero > p:not(.eyebrow) { max-width: 760px; margin: 16px auto; color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.5; }
.hero-search { width: min(720px, 92vw); margin: 20px auto 0; padding: 5px; background: rgba(255, 255, 255, .76); box-shadow: var(--glass-shadow); }
.hero-search input { padding: 13px 18px; font-size: 16px; }
.hero-search button { padding: 11px 24px; background: var(--accent); }
.hero-search button:hover { background: var(--accent-dark); }
.hero-keywords { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 12px; }
.hero-keywords span { padding: 7px 11px; border: 1px solid var(--glass-line); border-radius: 999px; background: rgba(255, 255, 255, .68); color: #5d5960; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9); font-size: 12px; }

.home-feed-nav { display: inline-flex; gap: 5px; overflow-x: auto; max-width: 100%; margin: -18px 0 28px; padding: 5px; border: 1px solid var(--glass-line); border-radius: 999px; background: var(--glass-strong); box-shadow: 0 10px 28px rgba(31, 20, 27, .07), inset 0 1px 0 #fff; scrollbar-width: none; }
.home-feed-nav::-webkit-scrollbar { display: none; }
.home-feed-nav a { display: inline-flex; min-height: 42px; flex: none; align-items: center; padding: 9px 16px; border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 750; transition: color .2s ease, background .2s ease, transform .2s var(--ease); }
.home-feed-nav a:hover { color: var(--ink); transform: translateY(-1px); }
.home-feed-nav .is-active { background: var(--ink); color: #fff; box-shadow: 0 7px 18px rgba(18, 18, 20, .17); }

.content-section { width: min(1400px, 100%); margin: auto; padding: 70px clamp(16px, 3vw, 48px); }
.home-page .content-section { padding-top: 38px; }
.content-section.compact { padding-top: 24px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); }
.section-heading > a { color: var(--muted); font-weight: 700; transition: color .2s ease, transform .2s ease; }
.section-heading > a:hover { color: var(--accent); transform: translateX(3px); }
.home-catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.home-catalog-heading h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); }
.home-catalog-heading > a { color: var(--muted); font-weight: 700; transition: color .2s ease, transform .2s ease; }
.home-catalog-heading > a:hover { color: var(--accent); transform: translateX(3px); }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 18px; }
.video-card { min-width: 0; animation: card-in .55s var(--ease) both; }
.video-card:nth-child(8n+2) { animation-delay: 45ms; }
.video-card:nth-child(8n+3) { animation-delay: 90ms; }
.video-card:nth-child(8n+4) { animation-delay: 135ms; }
.video-card:nth-child(8n+5) { animation-delay: 180ms; }
.video-card:nth-child(8n+6) { animation-delay: 225ms; }
.video-card:nth-child(8n+7) { animation-delay: 270ms; }
.video-card:nth-child(8n+8) { animation-delay: 315ms; }
.thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius); background: #eee; box-shadow: 0 1px 0 rgba(18, 18, 20, .04); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .18)); opacity: .55; transition: opacity .3s ease; }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s ease; }
.video-card:hover .thumb { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 18, 20, .14); }
.video-card:hover .thumb img { transform: scale(1.045); }
.video-card:hover .thumb::after { opacity: .8; }
.duration { position: absolute; z-index: 2; right: 9px; bottom: 9px; padding: 4px 7px; border-radius: 6px; background: rgba(0, 0, 0, .76); color: #fff; font-size: 11px; font-weight: 800; backdrop-filter: blur(6px); }
.card-body { padding: 13px 3px; }
.card-body h3 { margin: 0 0 7px; font-size: 15px; line-height: 1.4; }
.card-body h3 a { display: -webkit-box; min-height: 44px; overflow: hidden; align-content: start; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: color .2s ease; }
.card-body h3 a:hover { color: var(--accent); }
.performer-line, .metrics { margin: 0; color: var(--muted); font-size: 12px; }
.performer-line { overflow: hidden; margin-bottom: 4px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.performer-line a { display: inline; min-height: 0; }
.performer-line a:hover { text-decoration: underline; }
.metrics { display: flex; gap: 14px; }
.load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 44px; }
.load-more-button { display: inline-flex; min-width: 220px; min-height: 50px; align-items: center; justify-content: center; padding: 12px 26px; border: 1px solid var(--accent); border-radius: 15px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 850; box-shadow: 0 12px 28px rgba(197, 22, 77, .18); transition: transform .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease; }
.load-more-button:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(197, 22, 77, .24); }
.load-more-button.is-loading { opacity: .65; transform: none; box-shadow: none; }
.load-more-status:not(.sr-only) { margin: 0; color: var(--muted); font-size: 13px; }

.page-heading { padding: clamp(54px, 7vw, 100px) max(20px, calc((100vw - 1304px) / 2)) 36px; }
.page-heading h1 { font-size: clamp(44px, 6vw, 76px); }
.page-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.breadcrumbs { margin: 0 0 22px; color: var(--muted); font-size: 12px; }
.breadcrumbs ol { display: flex; min-width: 0; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; min-width: 0; align-items: center; gap: 7px; }
.breadcrumbs li + li::before { content: "/"; color: #b7b7bf; }
.breadcrumbs a { color: #4c4c54; font-weight: 700; }
.breadcrumbs a:hover { color: var(--accent-dark); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { max-width: min(62vw, 620px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.directory-grid a { display: flex; min-width: 0; min-height: 54px; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border: 1px solid var(--glass-line); border-radius: 15px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86); transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease; }
.directory-grid a:hover { transform: translateY(-2px); background: var(--glass-strong); box-shadow: 0 12px 30px rgba(18, 18, 20, .08), inset 0 1px 0 #fff; }
.directory-grid strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.directory-grid span { flex: none; color: var(--muted); font-size: 12px; }
.pager { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-top: 48px; padding: 14px 18px; border: 1px solid var(--glass-line); border-radius: 18px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86); }
.pager a { display: inline-flex; min-height: 44px; align-items: center; font-weight: 750; transition: color .2s ease, transform .2s ease; }
.pager a:hover { color: var(--accent); }
.pager a:last-child { text-align: right; }
.pager strong { color: var(--muted); font-size: 13px; }

.watch-layout { width: min(1200px, 100%); margin: auto; padding: 42px clamp(16px, 3vw, 48px) 0; }
.player-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 0; border-radius: clamp(12px, 1.8vw, 22px); background: #08080a; box-shadow: none; outline: 0; animation: player-in .7s var(--ease) both; }
.player-shell:focus-visible { outline: 3px solid rgba(197, 22, 77, .7); outline-offset: 3px; }
.player-shell video { position: relative; z-index: 2; width: 100%; height: 100%; background: #000; object-fit: contain; }
.player-shell button { display: grid; place-items: center; border: 0; color: #fff; cursor: pointer; }
.player-shell button svg { width: 22px; height: 22px; }
.player-shell .icon-play, .player-shell .icon-pause { fill: currentColor; }
.player-shell .icon-volume, .player-shell .icon-muted, .player-shell [data-fullscreen] svg, .player-quality-toggle svg { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.icon-pause, .icon-muted { display: none; }
.is-playing .icon-play { display: none; }
.is-playing .icon-pause { display: block; }
.is-muted .icon-volume { display: none; }
.is-muted .icon-muted { display: block; }
.player-topline { position: absolute; z-index: 5; top: 0; left: 0; right: 0; display: flex; align-items: center; gap: 9px; padding: 18px 20px 38px; color: rgba(255, 255, 255, .72); font-size: 11px; background: linear-gradient(rgba(0, 0, 0, .5), transparent); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.player-brand { color: #fff; font-size: 14px; font-weight: 850; }
.controls-visible .player-topline, .player-shell:hover .player-topline, .player-shell:not(.is-playing) .player-topline { opacity: 1; }
.player-loading { position: absolute; z-index: 3; inset: 0; display: grid; place-content: center; justify-items: center; color: #fff; background: linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .36)); }
.player-loading span { width: 34px; height: 34px; border: 2px solid rgba(255, 255, 255, .2); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.player-loading p { margin: 12px 0 0; color: rgba(255, 255, 255, .76); font-size: 12px; }
.is-loaded .player-loading, .is-ready .player-loading { display: none; }
.is-buffering .player-loading { display: grid; background: rgba(0, 0, 0, .12); }
.player-big-play { position: absolute; z-index: 5; left: 50%; top: 50%; width: clamp(62px, 8vw, 82px); height: clamp(62px, 8vw, 82px); transform: translate(-50%, -50%); border: 0 !important; border-radius: 50%; background: var(--accent); color: #fff; box-shadow: 0 16px 42px rgba(197, 22, 77, .34); visibility: visible; transition: transform .3s var(--ease), background .2s ease, box-shadow .2s ease; }
.player-big-play svg { width: 36px !important; height: 36px !important; }
.player-big-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--accent-dark); box-shadow: 0 20px 48px rgba(168, 13, 61, .42); }
.player-big-play:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.player-big-play:disabled, .is-play-pending .player-big-play, .is-playing .player-big-play { opacity: 0; visibility: hidden; pointer-events: none; }
.player-controls { position: absolute; z-index: 6; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 9px; padding: 58px 20px 16px; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .84)); opacity: 0; transform: translateY(10px); transition: opacity .25s ease, transform .3s var(--ease); pointer-events: none; }
.controls-visible .player-controls, .player-shell:hover .player-controls, .player-shell:focus-within .player-controls, .player-shell:not(.is-playing) .player-controls { opacity: 1; transform: none; pointer-events: auto; }
.player-control-row { display: flex; align-items: center; gap: 10px; min-height: 36px; }
.player-control-row button { width: 38px; height: 38px; flex: none; border-radius: 50%; background: transparent; transition: background .2s ease, transform .2s ease; }
.player-control-row button:hover { background: rgba(255, 255, 255, .14); transform: scale(1.04); }
.player-control-row button:disabled { opacity: .42; cursor: wait; }
.player-quality-toggle { width: auto !important; min-width: 76px; padding: 0 10px; column-gap: 6px; grid-template-columns: 20px auto; border-radius: 999px !important; color: #fff; font: inherit; font-size: 12px; font-weight: 800; }
.player-quality-toggle svg { width: 19px !important; height: 19px !important; }
.player-quality-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, .2); }
.player-quality-menu { position: absolute; z-index: 9; right: 20px; bottom: 70px; width: min(220px, calc(100% - 40px)); max-height: calc(100% - 88px); overflow: auto; padding: 14px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; background: rgba(15, 15, 18, .94); color: #fff; box-shadow: 0 18px 50px rgba(0, 0, 0, .42); backdrop-filter: blur(18px); }
.player-quality-menu[hidden] { display: none; }
.player-quality-menu > strong { display: block; padding: 2px 4px 10px; font-size: 12px; }
.player-quality-options { display: grid; gap: 3px; }
.player-quality-options button { display: flex; width: 100%; height: 40px; align-items: center; justify-content: space-between; padding: 0 11px; border-radius: 10px; background: transparent; color: rgba(255, 255, 255, .8); font: inherit; font-size: 13px; font-weight: 750; }
.player-quality-options button::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: transparent; }
.player-quality-options button:hover { background: rgba(255, 255, 255, .1); color: #fff; transform: none; }
.player-quality-options button[aria-checked="true"] { background: rgba(255, 47, 109, .2); color: #fff; }
.player-quality-options button[aria-checked="true"]::after { background: var(--accent); box-shadow: 0 0 0 3px rgba(255, 47, 109, .2); }
.player-control-spacer { flex: 1; }
.player-time { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .82); font-size: 12px; font-variant-numeric: tabular-nums; }
.player-time i { color: rgba(255, 255, 255, .38); font-style: normal; }
.player-seek, .player-volume { --progress: 0%; --volume: 100%; appearance: none; height: 16px; margin: 0; background: transparent; cursor: pointer; }
.player-seek { width: 100%; }
.player-volume { width: 86px; }
.player-seek::-webkit-slider-runnable-track, .player-volume::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; }
.player-seek::-webkit-slider-runnable-track { background: linear-gradient(to right, var(--accent) var(--progress), rgba(255, 255, 255, .3) var(--progress)); }
.player-volume::-webkit-slider-runnable-track { background: linear-gradient(to right, #fff var(--volume), rgba(255, 255, 255, .3) var(--volume)); }
.player-seek::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb { appearance: none; width: 13px; height: 13px; margin-top: -4.5px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .3); transition: transform .2s ease; }
.player-seek:hover::-webkit-slider-thumb, .player-volume:hover::-webkit-slider-thumb { transform: scale(1.18); }
.player-seek::-moz-range-track, .player-volume::-moz-range-track { height: 4px; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .3); }
.player-seek::-moz-range-progress { height: 4px; border-radius: 999px; background: var(--accent); }
.player-volume::-moz-range-progress { height: 4px; border-radius: 999px; background: #fff; }
.player-seek::-moz-range-thumb, .player-volume::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: #fff; }
.player-status { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.player-status:empty { display: none; }
.player-fallback { position: absolute; z-index: 8; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 999px; padding: 14px 20px; background: #fff; color: #111 !important; font-weight: 800; }
.player-fallback[hidden] { display: none; }
.has-error .player-big-play, .has-error .player-controls { display: none; }
.watch-copy { padding: 34px 0 0; }
.video-summary { padding: 0 2px 24px; }
.video-heading { min-width: 0; }
.watch-copy h1 { max-width: 980px; margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.12; }
.video-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; }
.watch-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); }
.watch-meta-item { display: flex; min-height: 46px; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid var(--glass-line); border-radius: 14px; background: rgba(255, 255, 255, .48); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82); }
.watch-meta-label { color: #777780; font-size: 11px; font-weight: 750; text-transform: uppercase; }
.watch-meta-item strong { color: var(--ink); font-size: 14px; font-variant-numeric: tabular-nums; }
.watch-description { max-width: 920px; margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.video-reactions { display: flex; flex: none; gap: 8px; }
.reaction-button { display: flex; align-items: center; gap: 7px; min-height: 46px; padding: 0 15px; border: 1px solid var(--glass-line); border-radius: 999px; background: var(--glass); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 7px 20px rgba(31, 20, 27, .05); cursor: pointer; transition: transform .2s var(--ease), background .2s ease, color .2s ease, box-shadow .2s ease; }
.reaction-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.reaction-button span { font-size: 13px; font-weight: 750; }
.reaction-button strong { color: var(--muted); font-size: 12px; font-weight: 650; }
.reaction-button:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 11px 26px rgba(31, 20, 27, .1), inset 0 1px 0 #fff; }
.reaction-button:focus-visible { outline: 3px solid rgba(197, 22, 77, .28); outline-offset: 2px; }
.reaction-button[aria-pressed="true"] { background: var(--accent); color: #fff; }
.reaction-button[aria-pressed="true"] strong { color: rgba(255, 255, 255, .78); }
.video-details { display: grid; gap: 18px; padding: 6px 2px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.taxonomy-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; }
.taxonomy-row > strong { color: #38383f; font-size: 13px; }
.taxonomy-links { display: flex; flex-wrap: wrap; gap: 8px; }
.taxonomy-row a { display: inline-flex; max-width: 100%; min-height: 44px; align-items: center; padding: 8px 14px; overflow-wrap: anywhere; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .68); box-shadow: none; font-size: 12px; font-weight: 700; text-align: left; transition: transform .2s ease, background .2s ease, color .2s ease; }
.taxonomy-row a:hover { transform: translateY(-1px); background: #fff; }
.taxonomy-row.performers a { background: rgba(197, 22, 77, .08); color: var(--accent-dark); }
.taxonomy-row.performers a:hover { background: rgba(197, 22, 77, .13); }
.taxonomy-row.tags a { color: #4e4e57; font-weight: 650; }
.video-more { overflow: hidden; border: 1px solid var(--glass-line); border-radius: 18px; background: rgba(255, 255, 255, .4); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82); }
.video-more summary { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 16px; list-style: none; cursor: pointer; }
.video-more summary::-webkit-details-marker { display: none; }
.video-more summary:focus-visible { outline: 3px solid rgba(197, 22, 77, .25); outline-offset: -3px; }
.video-more-heading { display: grid; gap: 3px; }
.video-more-heading strong { color: var(--ink); font-size: 14px; }
.video-more-heading small { color: var(--muted); font-size: 12px; }
.video-more-action { display: inline-flex; min-height: 40px; flex: none; align-items: center; gap: 7px; padding: 0 12px; border-radius: 999px; background: #fff; color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.video-more-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.video-more-open { display: none; }
.video-more[open] .video-more-closed { display: none; }
.video-more[open] .video-more-open { display: inline; }
.video-more[open] .video-more-action svg { transform: rotate(180deg); }
.video-more-content { display: grid; gap: 18px; padding: 4px 16px 18px; border-top: 1px solid rgba(255, 255, 255, .72); }
.video-more-content .taxonomy-row:first-child { padding-top: 14px; }

.empty-state { padding: 80px 20px; text-align: center; border: 1px solid var(--glass-line); border-radius: 20px; background: var(--glass); box-shadow: var(--glass-shadow); }
.empty-state.full { width: min(700px, calc(100% - 32px)); margin: 80px auto; }
.empty-state h1, .empty-state h2 { margin: 0 0 10px; }
.empty-state p { color: var(--muted); }
.primary-link { display: inline-block; margin-top: 14px; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 750; transition: transform .2s ease; }
.primary-link:hover { transform: translateY(-2px); }
.prose { width: min(820px, calc(100% - 40px)); min-height: 42vh; margin: 80px auto; }
.prose h1 { margin: 0 0 16px; font-size: clamp(40px, 6vw, 58px); }
.policy-updated { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.policy-summary { margin: 0 0 52px; color: #3f3f46; font-size: 20px; line-height: 1.65; }
.policy-page section { margin-top: 42px; }
.policy-page h2 { margin: 0 0 14px; font-size: clamp(23px, 3vw, 30px); }
.policy-page section p { margin: 12px 0; color: #4f5057; font-size: 17px; line-height: 1.75; }

.admin-shell { width: min(1240px, calc(100% - 32px)); min-height: 58vh; margin: 64px auto; }
.admin-login { width: min(520px, calc(100% - 32px)); }
.admin-heading h1 { margin: 0; font-size: clamp(38px, 5vw, 58px); }
.admin-heading > p:last-child { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.admin-bar { display: flex; align-items: start; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.admin-platform-switcher { display: inline-flex; gap: 4px; margin-bottom: 22px; padding: 5px; border: 1px solid var(--glass-line); border-radius: 999px; background: rgba(255,255,255,.68); box-shadow: 0 10px 28px rgba(31,20,27,.07); }
.admin-platform-switcher a { display: inline-flex; min-height: 42px; align-items: center; padding: 9px 18px; border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 800; }
.admin-platform-switcher a.is-active { background: var(--ink); color: #fff; }
.admin-platform-wawxxx_com .admin-platform-switcher a.is-active { background: #b9ff35; color: #070809; }
.admin-platform-wawxxx_com .admin-heading .eyebrow { color: #6f981b; }
.admin-form { display: grid; gap: 20px; }
.admin-form label { display: grid; gap: 9px; color: #34343a; font-size: 13px; font-weight: 750; }
.admin-form input, .admin-form textarea { width: 100%; border: 1px solid rgba(18, 18, 20, .14); border-radius: 14px; outline: 0; background: rgba(255, 255, 255, .82); color: var(--ink); }
.admin-form input { min-height: 48px; padding: 11px 14px; }
.admin-form textarea { min-height: 150px; padding: 14px; resize: vertical; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; font-weight: 500; line-height: 1.55; }
.admin-form input:focus, .admin-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(197, 22, 77, .1); }
.admin-form > button, .admin-login .admin-form button, .button-secondary { min-height: 46px; padding: 11px 18px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 750; cursor: pointer; }
.admin-form > button { justify-self: start; background: var(--accent); }
.button-secondary { background: rgba(255, 255, 255, .74); color: var(--ink); }
.admin-settings { gap: 18px; }
.admin-settings-form { display: none; }
.admin-settings-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.55fr); align-items: stretch; gap: 18px; }
.admin-card { padding: clamp(22px, 4vw, 36px); border: 1px solid var(--glass-line); border-radius: 24px; background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(16px) saturate(135%); }
.admin-card-analytics, .admin-card-indexing { display: flex; flex-direction: column; }
.admin-card h2 { margin: 0 0 12px; font-size: clamp(25px, 3vw, 34px); }
.admin-card > p:not(.eyebrow) { max-width: 760px; color: var(--muted); line-height: 1.65; }
.admin-card label { margin-top: 24px; }
.admin-card code { padding: 2px 5px; border-radius: 5px; background: rgba(18, 18, 20, .06); }
.admin-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.admin-card-heading h2 { margin-bottom: 0; }
.admin-state, .admin-file-total { flex: none; padding: 7px 10px; border-radius: 999px; background: rgba(18, 18, 20, .07); color: var(--muted); font-size: 11px; font-weight: 800; }
.admin-state.is-on { background: rgba(20, 120, 70, .1); color: #126438; }
.admin-index-link { flex: none; margin-top: 3px; color: var(--accent-dark); font-size: 12px; font-weight: 750; text-decoration: none; }
.admin-index-links { display: grid; justify-items: end; gap: 3px; }
.admin-site-settings { display: grid; gap: 12px; margin-top: 20px; }
.admin-site-settings > section { padding: 14px; border: 1px solid rgba(18, 18, 20, .08); border-radius: 16px; background: rgba(255, 255, 255, .52); }
.admin-site-settings label { margin-top: 12px; }
.admin-site-settings .field-help { margin-bottom: 0; }
.admin-site-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-site-heading strong { font-size: 14px; }
.admin-site-heading a { color: var(--accent-dark); font-size: 11px; font-weight: 750; }
.admin-rate-row { display: grid; grid-template-columns: minmax(230px, 300px) 1fr auto; align-items: end; gap: 20px; }
.admin-rate-row p { margin: 0 0 14px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.admin-button, button.admin-button { -webkit-appearance: none; appearance: none; display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font: inherit; font-size: 13px; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; }
.admin-button:hover, button.admin-button:hover { background: var(--accent-dark); color: #fff; }
.admin-button:focus-visible, button.admin-button:focus-visible { outline: 3px solid rgba(197, 22, 77, .22); outline-offset: 3px; }
.admin-button-secondary, button.admin-button-secondary { background: var(--ink); }
.admin-card-action { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 24px; }
.admin-card-action > span { max-width: 220px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.field-help { font-size: 13px; }
.field-help a { color: var(--accent-dark); text-decoration: underline; }
.status-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 24px 0; }
.status-grid div { min-width: 0; padding: 14px; border-radius: 14px; background: rgba(255, 255, 255, .68); }
.status-grid dt { color: var(--muted); font-size: 11px; }
.status-grid dd { overflow: hidden; margin: 5px 0 0; font-size: 16px; font-weight: 800; text-overflow: ellipsis; }
.admin-inline-action { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding: 16px 18px; border: 1px solid rgba(18,18,20,.08); border-radius: 16px; background: rgba(255,255,255,.68); }
.admin-inline-action > div { display: grid; gap: 4px; }
.admin-inline-action .eyebrow { margin-bottom: 1px; }
.admin-inline-action > div > strong { font-size: 15px; }
.admin-inline-action > div > span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.admin-operations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.admin-operations-grid.is-single { grid-template-columns: minmax(0, 1fr); }
.admin-operations { display: flex; min-width: 0; align-items: start; justify-content: space-between; flex-direction: column; gap: 22px; padding: 24px; border: 1px solid var(--glass-line); border-radius: 20px; background: rgba(255,255,255,.56); }
.admin-operations h2 { margin: 0 0 5px; font-size: 22px; }
.admin-operations p:last-child { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.admin-run-form { display: flex; align-items: center; gap: 16px; }
.admin-run-form button { flex: none; min-height: 46px; padding: 11px 18px; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 750; cursor: pointer; }
.admin-run-form button:disabled { opacity: .58; cursor: wait; }
.admin-cleanup-form { align-items: center; flex-wrap: wrap; justify-content: end; }
.admin-cleanup-form label { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 700; cursor: pointer; }
.admin-cleanup-form input { width: 16px; min-height: 16px; accent-color: var(--accent); }
.import-status-grid { display: grid; width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 0; }
.import-status-grid div { min-width: 0; padding: 10px 11px; border-radius: 12px; background: rgba(255,255,255,.68); }
.import-status-grid dt { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.import-status-grid dd { overflow: hidden; margin: 4px 0 0; font-size: 13px; font-weight: 800; text-overflow: ellipsis; }
.admin-operation-footer { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 12px; }
.admin-sitemap-files { margin-top: 18px; }
.admin-file-table-wrap { max-height: 440px; overflow: auto; margin-top: 24px; border: 1px solid rgba(18,18,20,.08); border-radius: 16px; background: rgba(255,255,255,.55); }
.admin-file-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-file-table th { position: sticky; z-index: 1; top: 0; padding: 12px 14px; background: #f5f3f5; color: var(--muted); text-align: left; font-size: 10px; text-transform: uppercase; }
.admin-file-table td { padding: 13px 14px; border-top: 1px solid rgba(18,18,20,.07); }
.admin-file-table td:first-child span { padding: 5px 8px; border-radius: 999px; background: rgba(197,22,77,.08); color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.admin-file-table a { color: var(--ink); font-weight: 700; text-decoration: none; }
.admin-file-table a:hover { color: var(--accent-dark); text-decoration: underline; }
.admin-empty { margin: 24px 0 0; padding: 22px; border-radius: 16px; background: rgba(255,255,255,.55); color: var(--muted); text-align: center; }
.notice { margin: 18px 0; padding: 13px 16px; border-radius: 13px; font-size: 14px; line-height: 1.55; }
.notice-error { background: rgba(168, 13, 61, .1); color: #7e0b31; }
.notice-success { background: rgba(20, 120, 70, .1); color: #126438; }

footer { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px; margin: 50px 18px 18px; padding: 28px clamp(20px, 5vw, 54px); border: 1px solid var(--glass-line); border-radius: 24px; background: var(--glass); box-shadow: var(--glass-shadow); color: var(--muted); font-size: 12px; backdrop-filter: blur(16px) saturate(135%); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px; }
.footer-links a, .footer-links button { display: inline-flex; min-height: 44px; align-items: center; padding: 0; border: 0; background: transparent; color: inherit; font-size: inherit; cursor: pointer; transition: color .2s ease; }
.footer-links a:hover, .footer-links button:hover { color: var(--ink); }
footer > p { text-align: right; }


@keyframes spin { to { transform: rotate(360deg); } }
@keyframes card-in { from { opacity: 0; transform: translateY(16px) scale(.99); } to { opacity: 1; transform: none; } }
@keyframes player-in { from { opacity: 0; transform: translateY(10px) scale(.995); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr; }
  .site-header nav { display: none; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-settings-grid { grid-template-columns: 1fr; }
  .admin-operations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: auto auto; gap: 12px; min-height: 66px; padding: 10px 16px; }
  .header-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 2px; }
  .header-search input { padding: 10px 14px; }
  .header-search button { padding: 7px 14px; }
  .brand { font-size: 24px; }
  .hero { padding: 38px 20px 42px; }
  .hero h1 { font-size: 42px; }
  .hero-search { margin-top: 18px; }
  .hero-keywords { gap: 6px; }
  .video-grid { gap: 25px 10px; }
  .content-section { padding: 48px 10px; }
  .home-page .content-section { padding-top: 32px; }
  .section-heading, .home-catalog-heading { padding-inline: 6px; }
  .directory-grid { grid-template-columns: 1fr; }
  .page-heading { padding: 58px 16px 28px; }
  .watch-layout { padding: 16px max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left)); }
  .player-controls { padding: 48px 10px 10px; }
  .player-control-row button { width: 44px; height: 44px; }
  .player-quality-toggle { min-width: 72px; }
  .player-quality-menu { right: 10px; bottom: 62px; width: min(210px, calc(100% - 20px)); max-height: calc(100% - 74px); padding: 10px; }
  .player-volume { display: none; }
  .player-topline { padding-inline: 12px; }
  .watch-copy { padding: 24px 4px 0; }
  .video-summary { padding-bottom: 22px; }
  .video-topline { align-items: stretch; flex-direction: column; gap: 12px; }
  .video-reactions { width: 100%; }
  .reaction-button { flex: 1; justify-content: center; padding-inline: 10px; }
  .video-details { gap: 18px; padding: 4px 0 0; border-radius: 0; }
  .admin-shell { margin-block: 40px; }
  .admin-bar { align-items: stretch; flex-direction: column; }
  .admin-bar form { align-self: start; }
  .status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-inline-action { align-items: stretch; flex-direction: column; }
  .admin-rate-row { grid-template-columns: 1fr; gap: 12px; }
  .admin-rate-row .admin-button { justify-self: start; }
  .admin-card-action { align-items: stretch; flex-direction: column; }
  .admin-card-action .admin-button { align-self: start; }
  .admin-run-form { align-items: stretch; flex-direction: column; }
  .admin-run-form button { align-self: start; }
  .admin-card-heading { align-items: start; flex-direction: column; }
  .admin-file-table th:nth-child(4), .admin-file-table td:nth-child(4) { display: none; }
  .admin-operation-footer { align-items: stretch; flex-direction: column; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > p { text-align: center; }
  .footer-links { justify-content: center; }
  .brand-small { justify-content: center; }
}

@media (max-width: 560px) {
  .home-page .hero { min-height: 0; padding: 30px 20px 34px; }
  .video-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .load-more-wrap { margin-top: 32px; }
  .load-more-button { width: 100%; }
  .content-section { padding-inline: 14px; }
  .policy-page { width: calc(100% - 32px); margin-block: 52px; }
  .admin-card { border-radius: 19px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 36px; }
  .hero-search input { font-size: 15px; }
  .hero-search button { padding-inline: 18px; }
  .hero-keywords span:nth-child(n+4) { display: none; }
  .card-body h3 { font-size: 14px; }
  .metrics { gap: 9px; }
  .duration { font-size: 10px; }
  .player-control-row { gap: 5px; }
  .player-time { font-size: 11px; }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header, .header-search, .hero-search, footer { background: rgba(255, 255, 255, .94); }
}

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