@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.creator-hero {
    background-color: #1a1a1a;
    display: flex;
    gap: 50px;
    padding: 50px 60px;
    align-items: flex-start;
    border-bottom: 1px solid #D4AF37;
}

.creator-hero-poster { flex-shrink: 0; }

.creator-hero-poster img {
    width: 240px;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
}

.creator-no-image {
    width: 240px;
    height: 360px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.creator-no-image-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.creator-hero-details {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}

.creator-hero-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
}

.creator-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.creator-hero-bio {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.creator-hero-bio::-webkit-scrollbar { width: 4px; }
.creator-hero-bio::-webkit-scrollbar-track { background: transparent; }
.creator-hero-bio::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

.creator-hero-bio p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.8;
    margin: 0;
}

/* ── Share bar ───────────────────────────────────────────────────────────────── */
.share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #2a2a2a;
}

.share-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    border: 1px solid #333;
    background: transparent;
    letter-spacing: 0.5px;
}

.share-btn:hover { opacity: 0.8; transform: scale(1.03); }
.share-twitter { color: white; font-size: 14px; }
.share-facebook { color: white; font-size: 15px; font-family: serif; }
.share-copy { color: #888; font-size: 11px; letter-spacing: 1px; }

/* ── Shows in database ───────────────────────────────────────────────────────── */
.creator-shows {
    padding: 40px;
    background-color: #fafafa;
    border-bottom: 1px solid #e4e4e4;
}

.creator-section-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border: none;
    padding: 0;
    display: block;
}

/* Dark section header variant */
.creator-section-header-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #f0ece4;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border: none;
    padding: 0;
    display: block;
}

.creator-shows-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.creator-shows-list::-webkit-scrollbar { display: none; }

.creator-show-card {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    cursor: pointer;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.creator-show-card:hover { transform: scale(1.03); }

.creator-show-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.creator-show-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    opacity: 0;
    transition: opacity 0.3s;
}

.creator-show-card:hover .creator-show-overlay { opacity: 1; }

.creator-show-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Interview cards ─────────────────────────────────────────────────────────── */
.creator-interview {
    background: #0d0d0d;
    padding: 48px 60px;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
}

.creator-interview-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.creator-interview-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    align-items: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.creator-interview-cards::-webkit-scrollbar { display: none; }

.creator-interview-card {
    flex-shrink: 0;
    width: 260px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #D4AF37;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
    box-sizing: border-box;
    overflow: hidden;
}

.creator-interview-card:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.creator-interview-card-header {
    padding: 14px 16px 12px;
    border-bottom: 1px solid #1e1e1e;
}

.creator-interview-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f0ece4;
    display: block;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* ── FIXED: Interview sub label — was #555, now clearly readable ─────────────── */
.creator-interview-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    display: block;
    opacity: 0.7;
}

.creator-interview-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #1a1a1a;
}

.creator-interview-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.creator-interview-card:hover .creator-interview-thumb img { opacity: 0.75; }

.creator-interview-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s;
    z-index: 2;
}

.creator-interview-card:hover .creator-interview-play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ── Creator like button ─────────────────────────────────────────────────────── */
.creator-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    height: 42px;
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    background: transparent;
    border: 1px solid #444;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.creator-like-btn:hover { border-color: #e07070; color: #e07070; }
.creator-like-btn.liked { color: #e07070; border-color: #e07070; }

/* ── Career timeline — IMDb style vertical list ─────────────────────────────── */
.creator-timeline {
    background: #0d0d0d;
    padding: 40px;
    border-top: 1px solid #B8960C;
    border-bottom: 1px solid #B8960C;
}

.creator-timeline-track {
    max-width: 700px;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 8px;
}

.creator-timeline-track::-webkit-scrollbar {
    display: none;
}

.creator-timeline .creator-section-header {
    color: #f0ece4;
    margin-bottom: 8px;
}

.creator-timeline-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(0,0,0,0.45);
    margin-bottom: 24px;
    font-style: italic;
    color: rgba(240,236,228,0.5);
}

/* The track is now just a simple vertical list */


.creator-timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each row */
.creator-timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: static;
    min-width: unset;
    max-width: unset;
    height: auto;
}

.creator-timeline-item:last-child { border-bottom: none; }

/* No balloon — just a small dot */
.creator-timeline-dot-cell {
    position: static;
    transform: none;
    flex-shrink: 0;
}

.creator-timeline-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: none;
    border: none;
    font-size: 0;
    color: transparent;
    transition: transform 0.2s;
}

.creator-timeline-item:hover .creator-timeline-dot {
    transform: scale(1.4);
}

.creator-timeline-dot.writer {
    background: rgba(0,0,0,0.3);
}

/* Year — left of dot */
.creator-timeline-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(0,0,0,0.45);
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

/* Content */
.creator-timeline-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: static;
    padding-top: 0;
    top: auto;
    bottom: auto;
}

/* Show title — not in DB */
.creator-timeline-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(240,236,228,0.45);
}

/* Show title — in DB */
a.creator-timeline-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #f0ece4;
    text-decoration: none;
    transition: color 0.2s;
}

a.creator-timeline-title:hover { color: #fff; }

.creator-timeline-role {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 7px;
}

.creator-timeline-role.creator {
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
}

.creator-timeline-role.writer {
    color: rgba(240,236,228,0.45);
    border: 1px solid rgba(240,236,228,0.15);
}





@media (max-width: 768px) {
    .creator-timeline { padding: 32px 20px; }
}

/* ── Recommended creators ────────────────────────────────────────────────────── */
.creator-recommended {
    padding: 40px;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
}

.creator-recommended-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    gap: 15px;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.creator-recommended-list::-webkit-scrollbar { display: none; }

.creator-rec-card {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    cursor: pointer;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.creator-rec-card:hover { transform: scale(1.03); }

.creator-rec-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.creator-rec-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background-color: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creator-rec-placeholder span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creator-rec-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    opacity: 0;
    transition: opacity 0.3s;
}

.creator-rec-card:hover .creator-rec-overlay { opacity: 1; }

.creator-rec-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .creator-hero {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    .creator-hero-poster img,
    .creator-no-image { width: 180px; height: 270px; }
    .creator-hero-title { font-size: 36px; }
    .creator-hero-bio { text-align: left; max-height: 180px; }
    .share-bar { justify-content: center; }
    .creator-shows { padding: 25px 20px; }
    .creator-recommended { padding: 25px 20px; }
    .creator-show-card, .creator-rec-card { width: 120px; }
    .creator-section-header, .creator-section-header-light { font-size: 22px; }
    .creator-interview { padding: 32px 20px; }
    .creator-interview-card { width: 210px; }
    .creator-timeline { padding: 32px 20px; }
    .creator-timeline-track { padding-left: 80px; }
    .creator-timeline-track::before { left: 60px; }
    .creator-timeline-year { left: -80px; width: 60px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .creator-hero { padding: 20px 15px; }
    .creator-hero-poster img,
    .creator-no-image { width: 150px; height: 225px; }
    .creator-hero-title { font-size: 28px; }
    .creator-hero-bio p { font-size: 13px; }
    .creator-show-card, .creator-rec-card { width: 100px; }
    .creator-section-header, .creator-section-header-light { font-size: 20px; }
}


/* ── Read Career Chronologically button ──────────────────────────────────────── */
.creator-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    height: 42px;
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0ece4;
    background: transparent;
    border: 1px solid #D4AF37;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.creator-read-btn:hover {
    background: #D4AF37;
    color: #111;
}

.creator-read-progress {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 2px 6px;
    border-radius: 2px;
}

.creator-read-btn:hover .creator-read-progress {
    color: #111;
    border-color: rgba(0,0,0,0.3);
}

/* ── Hero actions row ────────────────────────────────────────────────────────── */
.creator-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ── Help button ─────────────────────────────────────────────────────────────── */
.creator-help-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #444;
    color: #888;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.creator-help-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

@keyframes creator-help-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,175,55,0); }
    33% { transform: scale(1.15); box-shadow: 0 0 0 4px rgba(212,175,55,0.3); }
    66% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.creator-help-btn-pulse {
    animation: creator-help-pulse 2.4s ease-in-out;
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ── Community stats ─────────────────────────────────────────────────────────── */
.creator-community-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.creator-stat {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.3px;
}

.creator-stat-divider {
    color: #444;
    font-size: 11px;
}

/* ── Challenges strip ────────────────────────────────────────────────────────── */
.creator-challenges-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.creator-challenge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid #2a2a2a;
    background: rgba(212,175,55,0.05);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 20px;
}

.creator-challenge-pill:hover {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.1);
}

.creator-challenge-icon {
    font-size: 10px;
}

.creator-challenge-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ccc;
    text-transform: uppercase;
}

.creator-challenge-pct {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.5px;
}

.creator-challenge-join {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Shows section header with subhead ───────────────────────────────────────── */
.creator-shows-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.creator-shows-header .creator-section-header {
    margin-bottom: 0;
}

.creator-shows-subhead {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #888;
    font-style: italic;
}

/* ── Read checkmark on show cards ────────────────────────────────────────────── */
.creator-show-card.is-read img {
    opacity: 0.65;
}

.creator-show-read-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ── Interview intro text ─────────────────────────────────────────────────────── */
.creator-interview-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #666;
    margin-bottom: 24px;
    font-style: italic;
}

/* ── Timeline intro text ─────────────────────────────────────────────────────── */
.creator-timeline-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(0,0,0,0.45);
    margin-bottom: 24px;
    font-style: italic;
}

/* ── Similar creators intro ───────────────────────────────────────────────────── */
.creator-rec-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #999;
    margin-bottom: 20px;
    margin-top: -18px;
    font-style: italic;
}

/* ── Join modal ───────────────────────────────────────────────────────────────── */
.creator-join-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.creator-join-modal.visible {
    display: flex;
}

.creator-join-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #D4AF37;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    position: relative;
}

.creator-join-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 12px;
}

.creator-join-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px;
    line-height: 1.2;
}

.creator-join-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin: 0 0 28px;
}

.creator-join-actions {
    display: flex;
    gap: 12px;
}

.creator-join-signup {
    flex: 1;
    padding: 12px;
    background: #D4AF37;
    color: #111;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.creator-join-signup:hover { opacity: 0.85; }

.creator-join-login {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: #888;
    border: 1px solid #333;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.creator-join-login:hover { border-color: #888; color: #ccc; }

.creator-join-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.creator-join-close:hover { color: white; }

/* ── Help overlay ────────────────────────────────────────────────────────────── */
.creator-help-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.creator-help-overlay.visible {
    display: flex;
}

.creator-help-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #D4AF37;
    padding: 36px;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.creator-help-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 20px;
}

.creator-help-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.creator-help-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.creator-help-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    margin-top: 2px;
}

.creator-help-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #f0ece4;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.creator-help-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.creator-help-dismiss {
    width: 100%;
    padding: 12px;
    background: #D4AF37;
    color: #111;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.creator-help-dismiss:hover { opacity: 0.85; }

/* ── Mobile overrides ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .creator-hero-actions { gap: 8px; }
    .creator-read-btn { font-size: 10px; padding: 8px 14px; }
    .creator-shows-header { flex-direction: column; gap: 4px; }
    .creator-join-card, .creator-help-card { padding: 28px 20px; }
    .creator-join-title { font-size: 22px; }
    .creator-challenges-strip { gap: 6px; }
}


/* ── Career highlight card (< 4 credits) — shrinks to content ────────────────── */
.creator-timeline-highlight {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.creator-highlight-entry {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.creator-highlight-entry:last-child {
    border-bottom: none;
}

.creator-highlight-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(0,0,0,0.4);
    flex-shrink: 0;
    width: 44px;
    text-align: right;
}

.creator-highlight-body {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.creator-highlight-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: opacity 0.2s;
}

a.creator-highlight-title:hover { opacity: 0.6; }

.creator-highlight-role {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
}

.creator-highlight-role.creator {
    color: #111;
    border: 1px solid rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.08);
}

.creator-highlight-role.writer {
    color: rgba(0,0,0,0.45);
    border: 1px solid rgba(0,0,0,0.2);
}

.creator-highlight-read {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.creator-highlight-read:hover { opacity: 0.6; }


/* ── Timeline outer wrapper — height controlled by JS class ─────────────────── */
.creator-timeline-outer {
    overflow: hidden;
}

.creator-timeline-outer.is-timeline {
    /* Full timeline — fixed height with horizontal scroll */
}

.creator-timeline-outer.is-timeline .creator-timeline-scroll {
    overflow-x: auto;
    overflow-y: visible;
    height: 320px;
}

.creator-timeline-outer.is-highlight .creator-timeline-scroll {
    overflow: visible;
    height: auto;
}

/* Right fade only on full timeline */
.creator-timeline-outer.is-timeline::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 80px;
    background: linear-gradient(to right, transparent, #B8960C);
    pointer-events: none;
    z-index: 5;
}

.creator-timeline-outer.is-timeline {
    position: relative;
}


/* ── Simple career list (< 4 credits fallback) ───────────────────────────────── */
.creator-career-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
}

.creator-career-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.creator-career-item:last-child { border-bottom: none; }

.creator-career-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #999;
    width: 40px;
    flex-shrink: 0;
    text-align: right;
}

.creator-career-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D4AF37;
    flex-shrink: 0;
}

.creator-career-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    flex: 1;
    transition: color 0.2s;
}

.creator-career-title:hover { color: #D4AF37; }

.creator-career-title.muted {
    font-weight: 400;
    color: #999;
}

.creator-career-role {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    flex-shrink: 0;
}

.creator-career-role.creator {
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.06);
}

.creator-career-role.writer {
    color: #888;
    border: 1px solid #ddd;
}