/* Hollandse Porno - light theme (rood / wit / blauw), GenZ & to the point */

:root {
    --red:      #e4002b;
    --red-soft: #ff3355;
    --blue:     #1e5bd6;
    --blue-ink: #0b2a66;
    --ink:      #14131a;
    --muted:    #5b6072;
    --line:     #e9ebf2;
    --bg:       #ffffff;
    --bg-soft:  #f6f8fd;
    --bg-pink:  #fff1f3;
    --radius:   22px;
    --shadow:   0 18px 40px -18px rgba(20, 30, 80, 0.28);
    --shadow-sm:0 6px 18px -10px rgba(20, 30, 80, 0.35);
    --wrap:     1120px;
    --font:     "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(var(--wrap), 100% - 2.4rem); margin-inline: auto; }

/* ---------- Splash (lege homepage, alleen logo) ---------- */
body.splash {
    min-height: 100svh;
    display: grid; place-items: center;
    padding: 2rem;
    background:
        radial-gradient(1100px 460px at 18% 8%, var(--bg-pink), transparent 60%),
        radial-gradient(1000px 460px at 88% 92%, #eaf0fe, transparent 60%),
        var(--bg);
}
.splash-logo {
    margin: 0;
    display: inline-flex; align-items: center; gap: clamp(0.6rem, 2vw, 1.3rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1;
    font-size: clamp(2.4rem, 11vw, 7rem);
    color: var(--blue);
}
.splash-mark {
    display: inline-flex; gap: clamp(5px, 1.4vw, 11px); align-items: center;
    padding: clamp(8px, 1.8vw, 16px); border-radius: clamp(12px, 2vw, 22px);
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.splash-mark .dot {
    width: clamp(14px, 3.4vw, 34px); height: clamp(14px, 3.4vw, 34px);
    border-radius: 50%; display: block;
}
.splash-text .brand-accent { color: var(--red); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; gap: 1.2rem;
    height: 68px;
}
.brand {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em;
}
.brand-mark {
    display: inline-flex; gap: 4px; align-items: center;
    padding: 7px; border-radius: 12px; background: var(--bg-soft);
    border: 1px solid var(--line);
}
.brand-mark .dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot-red  { background: var(--red); }
.dot-blue { background: var(--blue); }
.brand-text { color: var(--blue); }
.brand-accent { color: var(--red); }

.site-nav {
    display: flex; gap: 0.4rem; margin-left: auto;
}
.site-nav a {
    padding: 0.5rem 0.9rem; border-radius: 999px;
    font-weight: 600; color: var(--muted); font-size: 0.98rem;
    transition: background .15s, color .15s;
}
.site-nav a:hover { color: var(--ink); background: var(--bg-soft); }
.site-nav a.is-active { color: var(--blue); background: #eaf0fe; }

.cta {
    padding: 0.6rem 1.15rem; border-radius: 999px;
    background: var(--red); color: #fff; font-weight: 700; font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: transform .15s, box-shadow .15s, background .15s;
}
.cta:hover { transform: translateY(-1px); background: var(--red-soft); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 380px at 12% -10%, var(--bg-pink), transparent 60%),
        radial-gradient(900px 360px at 92% 0%, #eaf0fe, transparent 60%);
    padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(2.4rem, 5vw, 3.6rem);
    text-align: center;
}
.hero::before, .hero::after {
    content: ""; position: absolute; border-radius: 50%;
    filter: blur(46px); opacity: 0.55; z-index: 0; pointer-events: none;
}
.hero::before { width: 380px; height: 380px; top: -130px; left: -70px;
    background: radial-gradient(circle, var(--red-soft), transparent 70%);
    animation: hpFloat 9s ease-in-out infinite; }
.hero::after { width: 340px; height: 340px; bottom: -150px; right: -50px;
    background: radial-gradient(circle, #4f8cff, transparent 70%);
    animation: hpFloat 12s ease-in-out infinite reverse; }
.hero .wrap { position: relative; z-index: 1; }
@keyframes hpFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(34px, -22px) scale(1.08); } }
/* Desktop: grote titel + subtitle ieder op 1 regel (geen ch-limiet, mobiele <br> verbergen) */
@media (min-width: 900px) {
    .hero h1, .hero .lead { max-width: none; white-space: nowrap; }
    .br-m { display: none; }
}
.pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; border: 1px solid var(--line);
    padding: 0.4rem 0.9rem; border-radius: 999px;
    font-size: 0.82rem; font-weight: 700; color: var(--blue-ink);
    box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.pill .live { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(228,0,43,.18); }
.hero h1 {
    font-size: clamp(2.3rem, 5.5vw, 4.4rem);
    line-height: 1.04; letter-spacing: -0.035em; font-weight: 800;
    color: var(--ink); max-width: 18ch; margin-inline: auto; overflow-wrap: break-word;
}
.hero h1 .grad { color: var(--blue); }
.hero p.lead {
    margin: 1.4rem auto 0; max-width: 58ch; color: var(--muted);
    font-size: clamp(1.02rem, 2.1vw, 1.28rem);
}
.hero-actions { margin-top: 1.8rem; display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 700;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-red  { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { transform: translateY(-2px); background: var(--red-soft); }
.btn-ghost { background: #fff; color: var(--blue-ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }

/* ---------- Section heading ---------- */
.section { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.section-head h2 {
    font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: -0.035em; font-weight: 800;
    text-transform: uppercase; line-height: 1.02;
}
.section-head h2 .em { color: var(--red); }
.sub-with-dots { display: inline-flex; align-items: center; gap: 0.45rem; }
.mini-mark { display: inline-flex; gap: 3px; align-items: center; flex: none; }
.mini-mark .dot { width: 7px; height: 7px; border-radius: 50%; display: block; }
.section-head p { color: var(--muted); margin-top: 0.15rem; }
.section-head .link {
    color: var(--blue); font-weight: 700; white-space: nowrap;
}
.section-head .link:hover { text-decoration: underline; }

/* ---------- News / card grid ---------- */
.news-grid {
    display: grid; gap: 1.4rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .tag-cat {
    position: absolute; top: 0.7rem; left: 0.7rem;
    background: var(--red); color: #fff; font-weight: 700;
    font-size: 0.72rem; letter-spacing: .04em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 999px;
}
.card-media .tag-dur {
    position: absolute; bottom: 0.7rem; right: 0.7rem;
    background: rgba(11, 42, 102, 0.86); color: #fff; font-weight: 700;
    font-size: 0.74rem; padding: 0.25rem 0.6rem; border-radius: 8px;
    backdrop-filter: blur(2px);
}
.card-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.card-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: #c7ccda; }
.card-body h3 { font-size: 1.18rem; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.card:hover .card-body h3 { color: var(--blue); }
.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-niches { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.chip {
    font-size: 0.74rem; font-weight: 600; color: var(--blue-ink);
    background: var(--bg-soft); border: 1px solid var(--line);
    padding: 0.22rem 0.6rem; border-radius: 999px;
}
.card-link {
    margin-top: 1rem; align-self: flex-start;
    font-weight: 700; color: var(--red); font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.card-link:hover { gap: 0.55rem; }

/* ---------- Feed-filter ---------- */
.feed-filter {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.feed-filter a {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0.5rem 1.15rem; border-radius: 999px; border: 1px solid var(--line);
    background: #fff; color: var(--muted); font-weight: 700; font-size: 0.95rem;
    text-align: center; white-space: nowrap; line-height: 1.1;
    transition: transform .15s, border-color .15s, color .15s, background .15s;
}
/* Mobiel: 3 even grote knoppen op 1 regel */
@media (max-width: 560px) {
    .feed-filter { flex-wrap: nowrap; gap: 0.4rem; }
    .feed-filter a { flex: 1 1 0; padding: 0.55rem 0.4rem; font-size: 0.82rem; }
}
.feed-filter a:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.feed-filter a.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------- Social feed (/nieuws) ---------- */
.feed {
    width: min(660px, 100%); margin-inline: auto;
    display: flex; flex-direction: column; gap: clamp(1.6rem, 3.5vw, 2.6rem);
}
.post {
    position: relative;
    background: #fff; border: 1px solid var(--line); border-radius: 30px;
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
    animation: hpFadeUp .6s cubic-bezier(.2,.7,.2,1) both;
}
.post:nth-child(2) { animation-delay: .09s; }
.post:nth-child(3) { animation-delay: .18s; }
.post:hover {
    transform: translateY(-7px);
    box-shadow: 0 32px 64px -26px rgba(228,0,43,.4), 0 20px 44px -22px rgba(30,91,214,.34);
}
/* Gradient-rand die oplicht bij hover */
.post::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .3s ease; pointer-events: none; z-index: 5;
}
.post:hover::after { opacity: 1; }
@keyframes hpFadeUp { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .post { animation: none; } }

.post-head { display: flex; align-items: center; gap: 0.85rem; padding: clamp(0.85rem,2vw,1.15rem) clamp(1rem,2.5vw,1.35rem); }
.post-avatar {
    width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none;
    padding: 3px; border: 0;
    background: linear-gradient(135deg, var(--red), var(--blue));
}
.post-id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.post-name { font-weight: 800; font-size: 1.08rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.35rem; }
.post-name .verified {
    width: 18px; height: 18px; flex: none; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #4f8cff); color: #fff;
    font-size: 0.66rem; font-weight: 900; display: inline-grid; place-items: center;
    box-shadow: 0 2px 8px -2px rgba(30,91,214,.6);
}
.post-handle { font-size: 0.88rem; color: var(--muted); }
.post-more { margin-left: auto; color: var(--muted); font-weight: 800; align-self: flex-start; letter-spacing: 1px; font-size: 1.1rem; }

.post-media {
    position: relative; display: block; aspect-ratio: 4 / 3;
    background: var(--bg-soft); overflow: hidden;
}
.media-link { position: absolute; inset: 0; display: block; z-index: 1; }
.post-media img, .vid-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-media:hover img, .vid-media:hover img { transform: scale(1.04); }
.post-trailer {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    background: #000; opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.playing .post-trailer { opacity: 1; }
/* Play-hint, alleen op hover-apparaten (desktop) */
@media (hover: hover) and (pointer: fine) {
    .has-trailer::after {
        content: "▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 54px; height: 54px; display: grid; place-items: center;
        background: rgba(11, 42, 102, 0.5); color: #fff; border-radius: 50%;
        font-size: 1rem; padding-left: 3px; backdrop-filter: blur(2px);
        transition: opacity .2s ease; pointer-events: none; z-index: 2;
    }
    .playing::after { opacity: 0; }
}
.post-cast-pills {
    position: absolute; top: 0.7rem; left: 0.7rem; z-index: 3;
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    max-width: calc(100% - 5.5rem);
}
.cast-pill {
    display: inline-flex; align-items: center; min-height: 30px;
    background: rgba(11, 42, 102, 0.4); color: #fff; text-decoration: none;
    font-weight: 700; font-size: 0.78rem; letter-spacing: -0.01em;
    padding: 0.3rem 0.72rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
    transition: background .15s, transform .15s, border-color .15s;
}
a.cast-pill:hover { background: rgba(228, 0, 43, 0.6); border-color: rgba(255, 255, 255, 0.65); transform: translateY(-1px); }
a.cast-pill:active { transform: scale(0.96); }
.cast-premium {
    background: linear-gradient(135deg, #ffb800, #ff7a00); color: #3a2300;
    border-color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: .03em;
}
.cast-free {
    background: linear-gradient(135deg, var(--blue), #4f8cff); color: #fff;
    border-color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: .03em;
}
/* Grotere tap-targets op touch */
@media (pointer: coarse) {
    .cast-pill { min-height: 40px; font-size: 0.88rem; padding: 0.5rem 0.95rem; }
    .post-cast-pills { gap: 0.45rem; }
}
.post-dur {
    position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 3;
    background: rgba(11, 42, 102, 0.4); color: #fff; font-weight: 700;
    font-size: 0.74rem; padding: 0.28rem 0.62rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}

.post-actions { display: flex; align-items: center; gap: 0.25rem; padding: clamp(0.7rem,1.6vw,1rem) clamp(0.7rem,1.6vw,1rem) 0.1rem; }
.post-actions .act {
    font: inherit; font-size: 1.6rem; line-height: 1; cursor: pointer;
    background: none; border: 0; padding: 0.4rem 0.5rem; border-radius: 14px;
    transition: background .15s, transform .15s;
}
.post-actions .act:hover { background: var(--bg-soft); transform: translateY(-2px) scale(1.14); }
.post-actions .act.like:hover { filter: saturate(1.4); }
.post-actions .save { margin-left: auto; }

.post-body { padding: 0.45rem clamp(1rem,2.5vw,1.35rem) clamp(1.1rem,2.5vw,1.45rem); }
.post-caption { font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.post-caption b { font-weight: 800; margin-right: 0.25rem; }
.post-caption .post-text { color: var(--muted); }
.post-tags {
    margin-top: 0.6rem; font-size: 0.98rem; font-weight: 800; word-spacing: 0.15rem;
    color: var(--blue);
}
.post-link {
    display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem;
    font-weight: 800; font-size: 1rem; color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    padding: 0.6rem 1.1rem; border-radius: 999px;
    box-shadow: 0 10px 22px -10px rgba(228,0,43,.7);
    transition: transform .18s ease, box-shadow .18s ease;
}
.post-link:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(228,0,43,.8); }

/* ---------- Empty / error state ---------- */
.notice {
    text-align: center; padding: 2.5rem 1rem; border: 1px dashed var(--line);
    border-radius: var(--radius); color: var(--muted); background: var(--bg-soft);
}

/* ---------- Paginering ---------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.pg {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 0.75rem; border-radius: 12px;
    border: 1px solid var(--line); background: #fff; color: var(--ink);
    font-weight: 700; font-size: 0.95rem;
    transition: transform .15s, border-color .15s, color .15s, background .15s;
}
.pg:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.pg-current, .pg-current:hover { background: var(--red); color: #fff; border-color: var(--red); }
.pg-arrow { font-weight: 800; }
.pg-ellipsis { padding: 0 0.3rem; color: var(--muted); font-weight: 700; }

/* ---------- Intro copy block (SEO) ---------- */
.intro { background: var(--bg-soft); }
.intro .wrap { max-width: 760px; text-align: center; }
.intro p { color: var(--muted); }
.intro p + p { margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; padding: 2.4rem 0 1.4rem; flex-wrap: wrap; }
.footer-brand .brand-text { font-size: 1.2rem; font-weight: 800; }
.footer-brand p { color: var(--muted); margin-top: 0.4rem; max-width: 38ch; font-size: 0.95rem; }
.footer-nav { display: flex; gap: 1.2rem; align-items: flex-start; }
.footer-nav a { color: var(--muted); font-weight: 600; }
.footer-nav a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0 2rem; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.age-badge {
    flex: none; font-weight: 800; font-size: 0.8rem; color: #fff;
    background: var(--red); padding: 0.3rem 0.55rem; border-radius: 8px;
}

@media (max-width: 560px) {
    .cta { display: none; }
    .header-inner { gap: 0.5rem; }
    .brand { font-size: 1.08rem; }
    .site-nav { gap: 0.1rem; }
    .site-nav a { padding: 0.4rem 0.5rem; font-size: 0.84rem; }
    .footer-inner { flex-direction: column; }
}

/* ---------- Modelpagina (/model/...) ---------- */
.profile {
    position: relative; overflow: hidden;
    background:
        radial-gradient(900px 320px at 14% -20%, var(--bg-pink), transparent 60%),
        radial-gradient(820px 320px at 92% -10%, #eaf0fe, transparent 60%);
    padding: clamp(2.4rem, 5.5vw, 3.8rem) 0 clamp(1rem, 2.5vw, 1.5rem);
}
.model-videos { padding-top: clamp(1rem, 2.5vw, 1.6rem); }
.profile-inner { display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.6rem); flex-wrap: wrap; }
.profile-avatar {
    width: clamp(120px, 30vw, 184px); height: clamp(120px, 30vw, 184px);
    aspect-ratio: 1; border-radius: 50%;
    object-fit: cover; padding: 4px; flex: none; align-self: center;
    background: linear-gradient(135deg, var(--red), var(--blue));
    box-shadow: var(--shadow);
}
.profile-main { min-width: 240px; flex: 1; }
.profile-main h1 {
    font-size: clamp(2rem, 5.4vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.04;
    display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.profile-main h1 .verified {
    width: 26px; height: 26px; font-size: 0.85rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #4f8cff); color: #fff;
    display: inline-grid; place-items: center; box-shadow: 0 2px 10px -2px rgba(30,91,214,.6);
}
.profile-tag { color: var(--muted); font-weight: 600; margin-top: 0.25rem; }
.profile-stats { display: flex; flex-wrap: wrap; align-items: center; row-gap: 0.6rem; margin-top: 1.1rem; }
.stat {
    display: inline-flex; flex-direction: column; line-height: 1.15;
    background: none; border: 0; box-shadow: none; padding: 0 1.1rem; position: relative;
}
.stat:first-child { padding-left: 0; }
.stat:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 22px; background: var(--line);
}
.stat .k { font-size: 0.66rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.stat .v { font-size: 1.02rem; font-weight: 700; color: var(--blue-ink); }
.profile-bio { max-width: 72ch; margin-top: 1.3rem; color: var(--ink); line-height: 1.65; font-size: 1.02rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--muted); font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.back-link:hover { color: var(--blue); }

.breadcrumb { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding: 0.7rem 0; font-size: 0.86rem; font-weight: 600; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #c2c8d6; }
.breadcrumb .current { color: var(--ink); }

.vid-grid {
    display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem);
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}
.vid {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.vid:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vid-media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.vid-niche {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 3;
    background: rgba(11, 42, 102, 0.4); color: #fff; border: 1px solid rgba(255,255,255,.35);
    font-weight: 700; font-size: 0.72rem; text-transform: capitalize;
    padding: 0.26rem 0.62rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.vid-premium {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 3;
    display: inline-flex; align-items: center; gap: 0.25rem;
    background: linear-gradient(135deg, #ffb800, #ff7a00); color: #3a2300;
    font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .03em;
    padding: 0.26rem 0.62rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px -8px rgba(255, 138, 0, 0.85);
}
.vid-4k {
    position: absolute; top: 0.6rem; right: 0.6rem; z-index: 3;
    background: rgba(11, 42, 102, 0.55); color: #fff; border: 1px solid rgba(255,255,255,.35);
    font-weight: 800; font-size: 0.68rem; letter-spacing: .04em;
    padding: 0.24rem 0.5rem; border-radius: 8px; backdrop-filter: blur(6px);
}
.section-head-2 { margin-top: clamp(2rem, 4vw, 2.8rem); }
.vid-body { padding: 0.85rem 0.95rem 1rem; }
.vid-body h3 { font-size: 1.02rem; line-height: 1.3; letter-spacing: -0.01em; }
.vid:hover .vid-body h3 { color: var(--blue); }
.vid-date { margin-top: 0.45rem; font-size: 0.82rem; color: var(--muted); }

/* ---------- Pornosterren-index ---------- */
.star-grid {
    display: grid; gap: clamp(1.1rem, 2.6vw, 1.7rem);
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
}
.star { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; transition: transform .18s ease; }
.star:hover { transform: translateY(-5px); }
.star-avatar {
    width: 100%; aspect-ratio: 1; border-radius: 50%; padding: 3px; overflow: hidden;
    background: linear-gradient(135deg, var(--red), var(--blue)); box-shadow: var(--shadow-sm);
}
.star-avatar img, .star-fallback { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.star-avatar img { transition: transform .4s ease; }
.star:hover .star-avatar img { transform: scale(1.07); }
.star-fallback {
    display: grid; place-items: center; background: var(--bg-soft);
    font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 800; color: var(--blue-ink);
}
.star-name { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.star:hover .star-name { color: var(--blue); }
.star-meta { font-size: 0.82rem; color: var(--muted); }

@media (max-width: 560px) {
    .profile-inner { flex-direction: column; text-align: center; }
    .profile-main h1, .profile-stats { justify-content: center; }
    .profile-bio { margin-inline: auto; }
}
