@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 */
.show-hero {
    background-color: #1a1a1a;
    display: flex;
    gap: 50px;
    padding: 50px 60px;
    align-items: flex-start;
    border-bottom: 1px solid #D4AF37;
    overflow: visible;
    position: relative;
    z-index: 10;
}

/* Poster */
.show-hero-poster {
    flex-shrink: 0;
}

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

/* Details */
.show-hero-details {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
    overflow: visible;
}

/* Genre tags */
.show-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.show-hero-tag {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 12px;
}

/* Emmy badge */
.show-emmy-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emmy-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: linear-gradient(135deg, #E8C547, #D4AF37, #B8960C);
    padding: 5px 12px;
    display: inline-block;
}

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

/* Creator */
.show-hero-creator {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.5px;
}

.show-hero-creator a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.show-hero-creator a:hover {
    color: white;
}

/* Network + pages meta */
.show-hero-details-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.show-hero-network {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #2a2a2a;
    padding: 4px 10px;
}

.show-hero-year {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}
.show-hero-pages {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
}

/* Overview */
.show-hero-overview {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

/* Actions */
.show-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.show-script-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    background: linear-gradient(135deg, #E8C547, #D4AF37, #B8960C);
    transition: opacity 0.3s, transform 0.2s;
}

.show-script-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: #1a1a1a;
}

/* ── Log button ───────────────────────────────────────────────────────────────── */
.show-log-wrap {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.show-log-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    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 #444;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.show-log-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.show-log-caret {
    font-size: 8px;
    color: #666;
    transition: transform 0.2s;
}

.show-log-dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #D4AF37;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
    z-index: 4000;
    transition: opacity 0.15s;
    overflow: visible;
    border: 1px solid #444;
}

.show-log-dropdown.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.show-log-option {
    display: block;
    width: 100%;
    padding: 11px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
    border-bottom: 1px solid #1e1e1e;
}

.show-log-option:last-child {
    border-bottom: none;
}

.show-log-option:hover {
    color: #f0ece4;
    background: #1a1a1a;
}

.show-log-option.active {
    color: #D4AF37;
}

.show-log-remove {
    color: #555;
    border-top: 1px solid #2a2a2a;
}

.show-log-remove:hover {
    color: #e07070;
    background: rgba(180, 60, 60, 0.06);
}

.show-log-btn-guest {
    display: inline-block;
    padding: 12px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #444;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.show-log-btn-guest:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ── Rate button ─────────────────────────────────────────────────────────────── */
.show-rate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    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 #444;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.show-rate-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ── Note button ─────────────────────────────────────────────────────────────── */
.show-note-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    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 #444;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.show-note-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ── Rating panel ────────────────────────────────────────────────────────────── */
.show-rating-panel {
    display: none;
    background: #111;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #D4AF37;
    padding: 24px;
    max-width: 520px;
}

.show-rating-panel.open {
    display: block;
}

.show-rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.show-rating-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f0ece4;
    letter-spacing: 0.03em;
    margin: 0 0 16px;
}

.show-rating-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f0ece4;
    letter-spacing: 0.03em;
}

.show-rating-remove {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.show-rating-remove:hover {
    color: #e07070;
}

.show-rating-criteria {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.show-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.show-rating-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    width: 55px;
    flex-shrink: 0;
}

.show-rating-track {
    display: flex;
    gap: 4px;
    flex: 1;
}

.show-rating-pip {
    width: 28px;
    height: 28px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    color: #444;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-rating-pip:hover,
.show-rating-pip.hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #D4AF37;
}

.show-rating-pip.filled {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
}

.show-rating-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #D4AF37;
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

.show-rating-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #1e1e1e;
}

.show-rating-composite-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}

.show-rating-composite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #f0ece4;
    flex: 1;
}

.show-rating-save {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: #D4AF37;
    color: #111;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.show-rating-save:hover {
    background: #e8c84a;
}

/* ── Writers Room link ───────────────────────────────────────────────────────── */
.room-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}

.room-link:hover {
    color: #e8c84a;
}

.room-link-count {
    background: #D4AF37;
    color: #111;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

/* 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; }

/* ── Trailer ─────────────────────────────────────────────────────────────────── */
.show-trailer {
    background: #161616;
    padding: 48px 60px;
    border-bottom: 1px solid #242424;
}

.show-trailer-inner {
    max-width: 860px;
    margin: 0 auto;
}

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

.show-trailer-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.show-trailer-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ── Where to watch ──────────────────────────────────────────────────────────── */
.show-watch {
    background: #1a1a1a;
    padding: 48px 60px;
    border-bottom: 1px solid #242424;
}

.show-watch-inner {
    max-width: 860px;
    margin: 0 auto;
}

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

.show-watch-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.show-watch-provider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.show-watch-provider img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.show-watch-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-align: center;
    max-width: 60px;
    line-height: 1.3;
}

.show-watch-type {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4AF37;
}

.show-watch-attribution {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: #444;
    margin-top: 8px;
}

/* ── Recommended ─────────────────────────────────────────────────────────────── */
.show-recommended {
    padding: 40px;
    background-color: #fafafa;
}

.show-recommended-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;
}

.show-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;
}

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

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

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

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

.show-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;
}

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

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

.show-rec-creator {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
}

/* ── Like button ─────────────────────────────────────────────────────────────── */
.show-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    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;
    white-space: nowrap;
}

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

/* ── Seasons & Episodes ──────────────────────────────────────────────────────── */
.show-seasons {
    background: #1a1a1a;
    padding: 48px 60px;
    border-bottom: 1px solid #242424;
}

.show-seasons-inner {
    max-width: 860px;
    margin: 0 auto;
}

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

.show-seasons-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #242424;
    border: 1px solid #242424;
}

.show-season-item { background: #1a1a1a; }

.show-season-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.show-season-btn:hover { background: #1e1e1e; }

.show-season-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #f0ece4;
    flex: 1;
}

.show-season-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #555;
    letter-spacing: 0.3px;
}

.show-season-caret {
    font-size: 10px;
    color: #555;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.show-season-btn.open .show-season-caret { transform: rotate(180deg); }

.show-season-episodes {
    display: none;
    border-top: 1px solid #242424;
    background: #161616;
}

.show-season-episodes.open { display: block; }

.show-season-loading {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #555;
    padding: 16px 20px;
    font-style: italic;
}

.show-episode-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 1px solid #1e1e1e;
    text-decoration: none;
    transition: background 0.15s;
}

.show-episode-item:last-child { border-bottom: none; }
.show-episode-item:hover { background: #1a1a1a; }

.show-episode-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #444;
    width: 28px;
    flex-shrink: 0;
}

.show-episode-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #ccc;
    flex: 1;
    transition: color 0.2s;
}

.show-episode-item:hover .show-episode-name { color: #D4AF37; }

.show-episode-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: #444;
    flex-shrink: 0;
}

/* ── Trailer extras ──────────────────────────────────────────────────────────── */
.show-trailer-fallback {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-trailer-fallback-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.show-trailer-fallback-link:hover { color: #e8c84a; }

.show-trailer-search {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
}

.show-trailer-thumb {
    display: block;
    position: relative;
    max-width: 860px;
    cursor: pointer;
    overflow: hidden;
}

.show-trailer-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.show-trailer-thumb:hover img { opacity: 0.85; }

.show-trailer-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s;
}

.show-trailer-thumb:hover .show-trailer-play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .show-hero {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    .show-hero-poster img { width: 180px; height: 270px; }
    .show-hero-title { font-size: 34px; }
    .show-hero-meta { justify-content: center; }
    .show-hero-actions { justify-content: center; }
    .share-bar { justify-content: center; }
    .show-hero-overview { font-size: 14px; text-align: left; }
    .show-recommended { padding: 25px 20px; }
    .show-rec-card { width: 130px; }
    .show-log-dropdown { left: auto; right: 0; }
    .show-rating-panel { max-width: 100%; }
    .show-rating-pip { width: 24px; height: 24px; font-size: 9px; }
    .show-trailer { padding: 32px 20px; }
    .show-watch { padding: 32px 20px; }
    .show-seasons { padding: 32px 20px; }
}

@media (max-width: 480px) {
    .show-hero { padding: 20px 15px; }
    .show-hero-poster img { width: 150px; height: 225px; }
    .show-hero-title { font-size: 28px; }
    .show-script-btn { padding: 10px 24px; font-size: 10px; }
    .show-rec-card { width: 110px; }
    .show-recommended-header { font-size: 22px; }
    .show-rating-track { gap: 2px; }
    .show-rating-pip { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SHOW PAGE — GUEST BUTTONS, JOIN MODAL, HELP OVERLAY
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Guest buttons ───────────────────────────────────────────────────────────── */
.show-guest-btn {
    opacity: 0.75;
    cursor: pointer;
    transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}

.show-guest-btn:hover { opacity: 1; }

/* ── Page help button ────────────────────────────────────────────────────────── */
.show-page-help-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: border-color 0.2s, background 0.2s !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
}

.show-page-help-btn:hover {
    border-color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.08) !important;
}

.show-page-help-btn-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #D4AF37;
    line-height: 1;
    display: block;
}

@keyframes show-help-btn-load-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); transform: scale(1); }
    40%  { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); transform: scale(1.18); }
    60%  { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); transform: scale(0.95); }
    80%  { box-shadow: 0 0 0 5px rgba(212, 175, 55, 0); transform: scale(1.1); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); transform: scale(1); }
}

.show-help-btn-pulse-load {
    animation: show-help-btn-load-pulse 0.8s ease-out 3;
}

@keyframes show-help-btn-pulse {
    0%   { border-color: rgba(212, 175, 55, 0.25); }
    25%  { border-color: rgba(212, 175, 55, 0.8); }
    50%  { border-color: rgba(212, 175, 55, 0.25); }
    75%  { border-color: rgba(212, 175, 55, 0.8); }
    100% { border-color: rgba(212, 175, 55, 0.25); }
}

.show-help-link-pulse {
    animation: show-help-btn-pulse 0.7s ease-in-out 3;
}

/* ── Join modal ──────────────────────────────────────────────────────────────── */
.show-join-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    transition: background 0.3s;
}

.show-join-modal.visible {
    background: rgba(0, 0, 0, 0.75);
    pointer-events: all;
}

.show-join-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #D4AF37;
    padding: 40px 48px 36px;
    width: 480px;
    max-width: calc(100vw - 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s ease;
}

.show-join-modal.visible .show-join-card {
    transform: translateY(0);
    opacity: 1;
}

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

.show-join-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #f0ece4;
    line-height: 1.2;
    margin: 0;
}

/* FIX: covers both .show-join-body (HTML class) and .show-join-desc (old CSS name) */
.show-join-body,
.show-join-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.7;
    border-top: 1px solid #242424;
    padding-top: 16px;
}

.show-join-actions {
    display: flex;
    gap: 12px;
    padding-top: 4px;
}

.show-join-signup {
    flex: 1;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: #D4AF37;
    color: #111;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    display: block;
}

.show-join-signup:hover { background: #e8c84a; color: #111; }

.show-join-login {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: color 0.2s, border-color 0.2s;
    display: block;
}

.show-join-login:hover { color: #f0ece4; border-color: #888; }

.show-join-close {
    position: absolute;
    top: 16px; right: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
    line-height: 1;
}

.show-join-close:hover { color: #bbb; }

/* ── Help overlay ────────────────────────────────────────────────────────────── */
.show-help-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    transition: background 0.3s;
}

.show-help-overlay.visible {
    background: rgba(0, 0, 0, 0.65);
    pointer-events: all;
}

.show-help-card {
    background: #1c1c1c;
    border: 1px solid #383838;
    border-top: 2px solid #D4AF37;
    padding: 40px 48px 36px;
    width: 580px;
    max-width: calc(100vw - 48px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease;
}

.show-help-overlay.visible .show-help-card {
    transform: translateY(0);
    opacity: 1;
}

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

.show-help-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.show-help-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.show-help-icon {
    font-size: 15px;
    color: #D4AF37;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-top: 1px;
    opacity: 0.8;
}

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

.show-help-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.7;
}

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

.show-help-dismiss:hover { background: #e8c84a; }

/* ── Mobile — modals become bottom sheets ────────────────────────────────────── */
@media (max-width: 768px) {

    /* Join modal */
    .show-join-modal {
        align-items: flex-end;
        padding: 0;
    }

    .show-join-card {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 28px 24px 48px;
        transform: translateY(100%);
        opacity: 1;
        gap: 14px;
    }

    .show-join-modal.visible .show-join-card {
        transform: translateY(0);
        opacity: 1;
    }

    .show-join-title { font-size: 1.5rem; }

    .show-join-body,
    .show-join-desc { font-size: 14px; color: #ccc; }

    .show-join-actions {
        flex-direction: column;
        gap: 10px;
    }

    .show-join-signup,
    .show-join-login {
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

    .show-join-close { color: #888; font-size: 16px; }

    /* Help overlay */
    .show-help-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .show-help-card {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 28px 24px 48px;
        transform: translateY(100%);
        opacity: 1;
        gap: 18px;
    }

    .show-help-overlay.visible .show-help-card {
        transform: translateY(0);
        opacity: 1;
    }

    .show-help-title { font-size: 14px; color: #f5f1e8; }
    .show-help-desc  { font-size: 13px; color: #ccc; }

    .show-help-dismiss {
        min-height: 48px;
        font-size: 10px;
    }
}