:root {
    --bg: #0d0b12;
    --bg-2: #151220;
    --panel: #1b1726;
    --panel-2: #221d31;
    --line: #2c2740;
    --ink: #f3eefb;
    --ink-soft: #cfc6df;
    --muted: #8f88a3;
    --accent: #ff4d6d;
    --accent-2: #ff9e5e;
    --accent-grad: linear-gradient(100deg, #ff4d6d, #ff9e5e);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.45);
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: radial-gradient(1200px 600px at 80% -10%, #1c1330 0%, var(--bg) 55%) no-repeat, var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: .2px; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(13,11,18,.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 66px; }
.brand { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .5px; }
.brand .brand-hot { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand.small { font-size: 20px; }
.search { flex: 1; max-width: 460px; display: flex; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.search input { flex: 1; background: transparent; border: 0; color: var(--ink); padding: 10px 18px; font-size: 15px; outline: none; }
.search button { background: transparent; border: 0; color: var(--accent); font-size: 20px; padding: 0 16px; cursor: pointer; }
.main-nav { display: flex; gap: 20px; font-weight: 500; color: var(--ink-soft); }
.main-nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 54px 0 30px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin: 0 0 14px; }
.hero .lead { font-size: 18px; color: var(--ink-soft); max-width: 620px; }
.hero .stat-row { display: flex; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.hero .stat b { font-family: var(--serif); font-size: 28px; display: block; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .stat span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* Section heading */
.section { padding: 30px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.section-head h2 { font-size: 26px; margin: 0; }
.section-head a { color: var(--accent); font-weight: 500; font-size: 14px; }

/* Grid of performers */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.grid.dense { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-4px); border-color: #3a3357; }
.card .thumb { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--panel-2), var(--bg-2)); position: relative; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .thumb .noimg { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-family: var(--serif); font-size: 40px; }
.card .body { padding: 11px 13px 14px; }
.card .name { font-weight: 600; font-size: 15px; line-height: 1.25; }
.card .meta { color: var(--muted); font-size: 12.5px; margin-top: 3px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-block; background: var(--panel-2); border: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; padding: 2px 8px; border-radius: 999px; }
.badge.accent { background: var(--accent-grad); color: #1a0d12; border: 0; font-weight: 600; }

/* Layout with sidebar (browse) */
.layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding: 26px 0 60px; }
.sidebar { position: sticky; top: 84px; align-self: start; }
.filter-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.filter-card h4 { margin: 0 0 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-family: var(--sans); font-weight: 700; }
.filter-list { display: flex; flex-direction: column; gap: 2px; max-height: 260px; overflow: auto; }
.filter-list a { padding: 5px 8px; border-radius: 8px; color: var(--ink-soft); font-size: 14px; display: flex; justify-content: space-between; }
.filter-list a:hover { background: var(--panel-2); color: #fff; }
.filter-list a.active { background: var(--accent-grad); color: #1a0d12; font-weight: 600; }
.filter-list a .c { color: var(--muted); font-size: 12px; }
.filter-list a.active .c { color: #1a0d12; }

/* Toolbar */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.toolbar .count { color: var(--muted); font-size: 14px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { background: var(--panel); border: 1px solid var(--line); color: var(--ink-soft); border-radius: 999px; padding: 7px 14px; font-size: 13px; cursor: pointer; }
.pill.active { background: var(--accent-grad); color: #1a0d12; border: 0; font-weight: 600; }
.chip-clear { color: var(--accent); font-size: 13px; }

/* A-Z bar */
.azbar { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 20px; }
.azbar a { width: 34px; height: 34px; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 9px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.azbar a:hover { border-color: var(--accent); color: #fff; }
.azbar a.active { background: var(--accent-grad); color: #1a0d12; border: 0; }
.azbar a.disabled { opacity: .3; pointer-events: none; }

/* Pagination */
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 34px; align-items: center; flex-wrap: wrap; }
.pager a, .pager span { padding: 8px 14px; border-radius: 9px; border: 1px solid var(--line); background: var(--panel); font-size: 14px; }
.pager a:hover { border-color: var(--accent); }
.pager .cur { background: var(--accent-grad); color: #1a0d12; border: 0; font-weight: 600; }

/* Profile */
.profile { display: grid; grid-template-columns: 320px 1fr; gap: 36px; padding: 30px 0 20px; }
.profile .photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); aspect-ratio: 3/4; }
.profile .photo img { width: 100%; height: 100%; object-fit: cover; }
.profile .photo .noimg { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); font-family: var(--serif); font-size: 90px; }
.profile h1 { font-size: 42px; margin: 0 0 6px; }
.profile .aka { color: var(--muted); font-style: italic; margin-bottom: 18px; }
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 18px 0; }
.facts .f { background: var(--panel); padding: 12px 14px; }
.facts .f .k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; }
.facts .f .v { font-weight: 600; margin-top: 2px; }
.bio { color: var(--ink-soft); line-height: 1.7; max-width: 68ch; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.crumb { color: var(--muted); font-size: 13px; padding-top: 20px; }
.crumb a:hover { color: var(--accent); }

/* Scene list */
.scenes { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.scene { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.scene:hover { border-color: #3a3357; }
.scene .st { aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; }
.scene .st img { width: 100%; height: 100%; object-fit: cover; }
.scene .sb { padding: 11px 13px 14px; }
.scene .sb .t { font-weight: 600; font-size: 14.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.scene .sb .m { color: var(--muted); font-size: 12.5px; margin-top: 5px; }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* Age gate */
.gate { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 20px; }
.gate .box { max-width: 520px; }
.gate h1 { font-size: 40px; margin-bottom: 10px; }
.gate p { color: var(--ink-soft); }
.btn { display: inline-block; background: var(--accent-grad); color: #1a0d12; font-weight: 700; padding: 13px 30px; border-radius: 999px; border: 0; font-size: 16px; cursor: pointer; }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); font-weight: 500; }
.gate .actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 50px; padding: 40px 0 30px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 0 0 12px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 7px; }
.footer-grid nav a { color: var(--ink-soft); font-size: 14px; }
.footer-grid nav a:hover { color: var(--accent); }
.copy { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; }

/* Prose (legal/about) */
.prose { max-width: 780px; margin: 0 auto; padding: 40px 0 60px; }
.prose h1 { font-size: 38px; margin-bottom: 8px; }
.prose h2 { font-size: 22px; margin-top: 30px; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.75; }

@media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .profile { grid-template-columns: 1fr; }
    .profile .photo { max-width: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-nav { display: none; }
}
