/*
Theme Name: YelName Theme
Theme URI: https://yelname.com
Description: Public projection front-end for YelName. Black & gold, mobile-first, built around the outbound "where to watch" CTA.
Version: 0.3.5
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: yelname
*/

/* ============================================================
   Design tokens — dark-committed black & gold identity
   ============================================================ */
:root {
    /* Grounds — near-black with a faint warm bias, not pure #000 */
    --ink: #0b0b0d;
    --ink-2: #101012;
    --surface: #151517;
    --surface-2: #1c1c20;
    --surface-3: #26262c;

    /* Gold — the single accent, spent only on conversion + identity */
    --gold: #e7c15a;
    --gold-bright: #f6d97e;
    --gold-deep: #c9971f;
    --gold-ink: #1a1408;           /* text that sits on gold */
    --gold-line: rgba(231, 193, 90, 0.22);
    --gold-glow: rgba(231, 193, 90, 0.28);
    --gold-grad: linear-gradient(135deg, #f6d97e 0%, #e7c15a 42%, #c9971f 100%);

    /* Text — warm ivory, not stark white */
    --text: #f4f1e9;
    --text-soft: #d8d3c7;
    --muted: #9c978a;
    --muted-2: #6f6a5f;

    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 14px 34px -12px var(--gold-glow);

    --wrap: 1140px;
    --pad: clamp(16px, 4vw, 28px);

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

    --step-eyebrow: 0.75rem;
    --step-body: 1rem;
    --step-h3: 1.05rem;
    --step-h2: clamp(1.25rem, 1rem + 1.2vw, 1.7rem);
    --step-h1: clamp(1.9rem, 1.3rem + 3vw, 3.1rem);
    --step-hero: clamp(2.3rem, 1.4rem + 4.4vw, 4.1rem);
}

/* ============================================================
   Reset / base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html.yel-locked { overflow: hidden; }

body.yel {
    margin: 0;
    background:
        radial-gradient(1200px 600px at 50% -200px, #1a160c 0%, rgba(26, 22, 12, 0) 60%),
        var(--ink);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: var(--step-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

h1, h2, h3 { text-wrap: balance; margin: 0; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

.yel-skip {
    position: fixed;
    top: -60px; left: 12px;
    z-index: 200;
    background: var(--gold);
    color: var(--gold-ink);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    transition: top 0.18s ease;
}
.yel-skip:focus { top: 12px; color: var(--gold-ink); }

/* Shared layout wrapper for main + sections */
.yel-main {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: clamp(18px, 3vw, 34px) var(--pad) 96px;
}
@media (min-width: 720px) {
    .yel-main { padding-bottom: 64px; }
}

/* ============================================================
   Brand
   ============================================================ */
.yel-brand { display: inline-flex; align-items: center; }
.yel-brand__logo { height: 50px; width: auto; display: block; }
@media (max-width: 600px) { .yel-brand__logo { height: 40px; } }
.yel-brand__mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1;
}
.yel-brand__gold {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   Header
   ============================================================ */
.yel-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(11, 11, 13, 0.72);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.yel-header.is-scrolled {
    border-bottom-color: var(--gold-line);
    background: rgba(11, 11, 13, 0.9);
}
.yel-header__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 12px var(--pad);
    display: flex;
    align-items: center;
    gap: 14px;
}
.yel-header__search {
    flex: 1;
    min-width: 0;
    display: none;
}
.yel-nav { margin-left: auto; }
.yel-nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; gap: 6px;
}
.yel-nav__list a {
    display: inline-flex; align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.9rem;
}
.yel-nav__list a:hover { color: var(--gold-bright); background: var(--surface-2); }

.yel-search-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}
.yel-search-toggle:hover { border-color: var(--gold-line); color: var(--gold-bright); }

/* On mobile the search is revealed below the bar when toggled */
.yel-header.is-search-open .yel-header__search {
    display: block;
    flex-basis: 100%;
    order: 3;
    padding-top: 4px;
}

@media (min-width: 860px) {
    .yel-search-toggle { display: none; }
    .yel-header__search { display: block; max-width: 460px; }
    .yel-nav { margin-left: 8px; }
}

/* ============================================================
   Search field
   ============================================================ */
.yel-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 6px 6px 6px 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.yel-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.yel-search__icon { color: var(--muted); display: inline-flex; flex-shrink: 0; }
.yel-search input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    color: var(--text);
    font: inherit;
    font-size: 0.98rem;
    padding: 6px 2px;
}
.yel-search input::placeholder { color: var(--muted-2); }
.yel-search input:focus { outline: none; }
.yel-search__submit {
    flex-shrink: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gold-grad);
    color: var(--gold-ink);
    font: inherit;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 9px 18px;
    cursor: pointer;
    transition: filter 0.16s ease, transform 0.16s ease;
}
.yel-search__submit:hover { filter: brightness(1.06); }
.yel-search__submit:active { transform: translateY(1px); }

.yel-search--hero {
    padding: 8px 8px 8px 18px;
    box-shadow: var(--shadow);
}
.yel-search--hero input { font-size: 1.05rem; padding: 12px 2px; }
.yel-search--hero .yel-search__submit { padding: 12px 22px; }

/* ============================================================
   Buttons
   ============================================================ */
.yel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}
.yel-btn--gold {
    background: var(--gold-grad);
    color: var(--gold-ink);
    box-shadow: var(--shadow-gold);
}
.yel-btn--gold:hover { color: var(--gold-ink); filter: brightness(1.06); transform: translateY(-1px); }
.yel-btn--gold:active { transform: translateY(0); }

/* ============================================================
   Hero (home)
   ============================================================ */
.yel-hero {
    text-align: center;
    padding: clamp(28px, 6vw, 72px) 0 clamp(24px, 4vw, 44px);
}
.yel-hero__inner { max-width: 760px; margin: 0 auto; }
.yel-hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--step-hero);
    line-height: 1.02;
    letter-spacing: -0.02em;
}
.yel-hero__gold {
    display: block;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.yel-hero__sub {
    margin: 18px auto 26px;
    max-width: 52ch;
    color: var(--muted);
    font-size: 1.08rem;
}
.yel-hero__search { max-width: 620px; margin: 0 auto; }

/* ============================================================
   Sections
   ============================================================ */
.yel-section { margin-top: clamp(32px, 5vw, 56px); }
.yel-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.yel-section__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--step-h2);
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 16px;
    margin-bottom: 18px;
}
.yel-section__title::before {
    content: "";
    position: absolute;
    left: 0; top: 0.18em; bottom: 0.18em;
    width: 4px;
    border-radius: 4px;
    background: var(--gold-grad);
}
/* When the title sits in a flex head with a "see more" link, the head owns spacing */
.yel-section__head .yel-section__title { margin-bottom: 0; }
.yel-section__more {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* ============================================================
   Feed / cards
   ============================================================ */
.yel-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 620px) { .yel-feed { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .yel-feed { grid-template-columns: repeat(4, 1fr); } }

.yel-feed__ad { grid-column: 1 / -1; }

.yel-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.yel-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-line);
    box-shadow: var(--shadow);
}
.yel-card__link { display: block; color: inherit; height: 100%; }
.yel-card__link:hover { color: inherit; }
.yel-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--surface-3);
    overflow: hidden;
}
.yel-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.yel-card:hover .yel-card__img { transform: scale(1.05); }
.yel-card__img--empty {
    background:
        repeating-linear-gradient(45deg, #202026 0 12px, #1a1a1f 12px 24px);
}
.yel-card__play {
    position: absolute;
    left: 12px; bottom: 12px;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 999px;
    background: rgba(11, 11, 13, 0.6);
    backdrop-filter: blur(4px);
    color: var(--gold-bright);
    border: 1px solid var(--gold-line);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.yel-card:hover .yel-card__play { opacity: 1; transform: translateY(0); }
.yel-card__badge {
    position: absolute;
    top: 10px; right: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold-bright);
    background: rgba(11, 11, 13, 0.72);
    border: 1px solid var(--gold-line);
}
.yel-card__body { padding: 12px 13px 15px; }
.yel-card__creator {
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
}
.yel-card__title {
    font-size: var(--step-h3);
    font-weight: 700;
    line-height: 1.28;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Cards used on phone in a horizontal-ish denser grid keep 2 cols — fine */

/* ============================================================
   Creators strip
   ============================================================ */
.yel-creators-strip {
    list-style: none;
    margin: 0; padding: 4px 0 8px;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.yel-creators-strip--wrap { flex-wrap: wrap; overflow: visible; }
.yel-creators-strip__item { scroll-snap-align: start; flex: 0 0 auto; text-align: center; width: 88px; }
.yel-creators-strip__item a { display: block; color: var(--text-soft); }
.yel-creators-strip__item a:hover { color: var(--gold-bright); }
.yel-creators-strip__avatar {
    width: 72px; height: 72px;
    margin: 0 auto 8px;
    border-radius: 999px;
    overflow: hidden;
    display: grid; place-items: center;
    background: var(--surface-3);
    border: 2px solid var(--gold-line);
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.yel-creators-strip__item a:hover .yel-creators-strip__avatar { border-color: var(--gold); transform: translateY(-2px); }
.yel-creators-strip__avatar img { width: 100%; height: 100%; object-fit: cover; }
.yel-creators-strip__name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================================
   Content page
   ============================================================ */
.yel-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.yel-breadcrumb a { color: var(--muted); }
.yel-breadcrumb a:hover { color: var(--gold-bright); }
.yel-breadcrumb__current { color: var(--text-soft); }

.yel-content__grid { display: grid; gap: clamp(18px, 3vw, 30px); }
@media (min-width: 880px) {
    .yel-content__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        align-items: start;
    }
}

.yel-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-3);
}
.yel-figure__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.yel-figure__img--empty {
    background: repeating-linear-gradient(45deg, #202026 0 14px, #1a1a1f 14px 28px);
}
.yel-figure__sfw {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-soft);
    background: rgba(11, 11, 13, 0.66);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(4px);
}

.yel-content__head { margin-bottom: 20px; }
.yel-content__creator {
    margin: 0 0 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}
.yel-content__creator a { color: var(--gold); }
.yel-content__creator a:hover { color: var(--gold-bright); }
.yel-content__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--step-h1);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

/* ---- Sources: the hero CTA block ------------------------------------- */
.yel-sources {
    background:
        linear-gradient(180deg, rgba(231, 193, 90, 0.06), rgba(231, 193, 90, 0) 60%),
        var(--surface);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 3vw, 24px);
    box-shadow: var(--shadow);
}
.yel-sources__title {
    font-family: var(--font-ui);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
    color: var(--text-soft);
}
.yel-sources__eyebrow {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

/* Primary outbound button — the single loudest element on the page */
.yel-cta--primary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: var(--gold-grad);
    color: var(--gold-ink);
    box-shadow: 0 16px 40px -14px var(--gold-glow);
    overflow: hidden;
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.yel-cta--primary::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 45%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.yel-cta--primary:hover {
    color: var(--gold-ink);
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 22px 48px -14px var(--gold-glow);
}
.yel-cta--primary:hover::after { left: 120%; }
.yel-cta--primary:active { transform: translateY(0); }
.yel-cta__icon {
    display: grid; place-items: center;
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(26, 20, 8, 0.16);
}
.yel-cta__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.yel-cta__lead {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.72;
}
.yel-cta__platform { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; }
.yel-cta__arrow { margin-left: auto; display: inline-flex; flex-shrink: 0; }

.yel-sources__also {
    margin: 20px 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}
.yel-sources__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.yel-cta--chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    border: 1px solid var(--gold-line);
    background: var(--surface-2);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.92rem;
    transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.yel-cta--chip:hover {
    border-color: var(--gold);
    background: var(--surface-3);
    color: var(--gold-bright);
    transform: translateY(-1px);
}
.yel-cta--chip .yel-cta__arrow { opacity: 0.6; }
.yel-cta--chip:hover .yel-cta__arrow { opacity: 1; }

.yel-sources__note {
    margin: 16px 0 0;
    font-size: 0.8rem;
    color: var(--muted-2);
}

/* Outbound button locked during the ad-impression delay (with live countdown) */
.yel-cta.is-locked {
    cursor: progress;
    filter: saturate(0.55) brightness(0.9);
}
.yel-cta--primary.is-locked {
    transform: none;
    box-shadow: none;
}
.yel-cta--primary.is-locked::after { display: none; }
.yel-cta--primary.is-locked .yel-cta__arrow {
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
    min-width: 22px;
    text-align: center;
}
.yel-cta--chip.is-locked { opacity: 0.5; }
.yel-stickybar__btn.is-locked { filter: saturate(0.55) brightness(0.9); cursor: progress; }
.yel-sources__lock {
    margin: 10px 2px 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}

/* ---- Prose / info ---------------------------------------------------- */
.yel-prose__body {
    max-width: 68ch;
    color: var(--text-soft);
    line-height: 1.7;
}
.yel-prose__body p { margin: 0 0 1em; }
.yel-prose__body a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- Participants ---------------------------------------------------- */
.yel-people {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.yel-people__item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.yel-people__item:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.yel-people__link { display: block; color: var(--text); }
.yel-people__link:hover { color: var(--gold-bright); }
.yel-people__avatar {
    width: 60px; height: 60px;
    margin: 0 auto 10px;
    border-radius: 999px;
    overflow: hidden;
    display: grid; place-items: center;
    background: var(--surface-3);
    border: 2px solid var(--gold-line);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
}
.yel-people__avatar img { width: 100%; height: 100%; object-fit: cover; }
.yel-people__name { display: block; font-weight: 700; font-size: 0.92rem; }
.yel-people__role {
    display: block;
    margin-top: 3px;
    font-size: 0.74rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================================
   Creator page
   ============================================================ */
.yel-creator__hero { display: grid; gap: clamp(18px, 3vw, 32px); }
@media (min-width: 780px) {
    .yel-creator__hero {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        align-items: start;
    }
}
.yel-creator__photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gold-line);
    background: var(--surface-3);
    display: grid; place-items: center;
}
.yel-creator__photo img { width: 100%; height: 100%; object-fit: cover; }
.yel-creator__photo--empty { font-family: var(--font-display); font-size: 4rem; color: var(--gold); }
.yel-creator__eyebrow { color: var(--gold); }
.yel-creator__aliases { margin: 12px 0 0; color: var(--text-soft); }
.yel-creator__aliases-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}
.yel-creator__country { margin: 8px 0 0; color: var(--muted); font-size: 0.9rem; }
.yel-creator__bio { margin-top: 16px; max-width: 62ch; color: var(--text-soft); line-height: 1.7; }

.yel-profiles {
    list-style: none;
    margin: 20px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 10px;
}
.yel-profiles__link {
    display: inline-flex;
    flex-direction: column;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-line);
    background: var(--surface-2);
    line-height: 1.2;
    transition: border-color 0.16s ease, transform 0.16s ease;
}
.yel-profiles__link:hover { border-color: var(--gold); transform: translateY(-1px); }
.yel-profiles__platform { font-weight: 800; color: var(--gold); font-size: 0.9rem; }
.yel-profiles__user { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   Ads
   ============================================================ */
.yel-ad {
    display: block;
    margin: clamp(28px, 4vw, 44px) auto;
    text-align: center;
}
.yel-ad__label {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 8px;
}
.yel-ad__slot {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}
.yel-ad__slot > * { max-width: 100%; }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.yel-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(11, 11, 13, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gold-line);
    animation: yel-slide-up 0.24s ease;
}
.yel-stickybar__meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.yel-stickybar__creator {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.yel-stickybar__label { font-size: 0.76rem; color: var(--muted); }
.yel-stickybar__btn { margin-left: auto; flex-shrink: 0; min-height: 44px; }

@keyframes yel-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (min-width: 880px) {
    .yel-stickybar { display: none !important; }
}

/* ============================================================
   Age gate
   ============================================================ */
.yel-agegate {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(6, 6, 8, 0.82);
    backdrop-filter: blur(10px);
    animation: yel-fade 0.2s ease;
}
.yel-agegate.is-leaving { animation: yel-fade 0.2s ease reverse; }
.yel-agegate__card {
    width: min(440px, 100%);
    background:
        radial-gradient(600px 200px at 50% -60px, rgba(231, 193, 90, 0.14), transparent 70%),
        var(--surface);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 36px);
    text-align: center;
    box-shadow: var(--shadow);
}
.yel-agegate__badge {
    display: inline-grid;
    place-items: center;
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: var(--gold-grad);
    color: var(--gold-ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
}
.yel-agegate__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.yel-agegate__text { color: var(--muted); margin: 0 0 22px; font-size: 0.98rem; }
.yel-agegate__actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.yel-agegate__actions .yel-btn { width: 100%; }
.yel-agegate__leave { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.yel-agegate__leave:hover { color: var(--text-soft); }

@keyframes yel-fade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   Footer
   ============================================================ */
.yel-footer {
    border-top: 1px solid var(--line);
    background: var(--ink-2);
    margin-top: 40px;
}
.yel-footer__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 40px var(--pad) calc(40px + env(safe-area-inset-bottom));
    display: grid;
    gap: 18px;
}
.yel-footer__tagline { margin: 12px 0 0; color: var(--muted); max-width: 46ch; font-size: 0.92rem; }
.yel-footer__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 18px;
}
.yel-footer__list a { color: var(--text-soft); font-weight: 600; font-size: 0.92rem; }
.yel-footer__list a:hover { color: var(--gold-bright); }
.yel-footer__legal { margin: 0; color: var(--muted-2); font-size: 0.82rem; }

/* ============================================================
   Search / archive / empty
   ============================================================ */
.yel-searchpage__head, .yel-archive__head { margin-bottom: 8px; }
.yel-searchpage__eyebrow {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 8px;
}
.yel-searchpage__form { max-width: 560px; margin-top: 18px; }

.yel-empty {
    color: var(--muted);
    background: var(--surface);
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.yel-empty--lg { padding: 60px 28px; display: grid; gap: 14px; justify-items: center; }
.yel-empty__hint { color: var(--muted-2); font-size: 0.9rem; }

.yel-pagination { margin-top: 32px; display: flex; justify-content: center; }
.yel-pagination .page-numbers {
    display: inline-flex;
    align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 12px;
    margin: 0 3px;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    color: var(--text-soft);
    font-weight: 700;
}
.yel-pagination .page-numbers:hover { border-color: var(--gold-line); color: var(--gold-bright); }
.yel-pagination .page-numbers.current {
    background: var(--gold-grad);
    color: var(--gold-ink);
    border-color: transparent;
}

/* ============================================================
   Motion / accessibility preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .yel-cta--primary::after { display: none; }
}
