/**
 * Guyscat Creator Feed — storefront tab (Phase 3a).
 * Preview cards rendered SSR by GC_Feed_Posts::render_preview_card().
 */

.gc-storefront-feed {
    display: block;
}

.gc-storefront-feed .gc-section-header {
    margin-bottom: 1rem;
}

.gc-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gc-feed-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--gc-radius-scale, 1) * 12px);
    overflow: hidden;
    position: relative;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.gc-feed-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Header row — visibility badge + post date */
.gc-feed-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.85rem;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.gc-feed-card__badge {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: var(--gc-radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.gc-feed-card--subscribers .gc-feed-card__badge {
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
}

.gc-feed-card__date {
    white-space: nowrap;
}

/* Hero image / clip poster */
.gc-feed-card__hero {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.gc-feed-card__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-feed-card__hero--blurred img {
    filter: blur(22px);
    transform: scale(1.08);
}

.gc-feed-card__hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--gc-accent-2-rgb), 0.25), rgba(0, 0, 0, 0.6));
    display: block;
}

.gc-feed-card__clip-badge {
    position: absolute;
    left: 0.55rem;
    bottom: 0.55rem;
    padding: 0.18rem 0.55rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

/* Title + body */
.gc-feed-card__title {
    margin: 0.65rem 0.85rem 0.35rem;
    font-size: 1rem;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
}

.gc-feed-card__body {
    margin: 0 0.85rem 0.75rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Locked overlay — subscribers-only posts, viewer is not subscribed */
.gc-feed-card__lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0 0.85rem 0.85rem;
    padding: 0.85rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    text-align: center;
    background: rgba(var(--gc-accent-2-rgb), 0.08);
}

.gc-feed-card__lock-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.gc-feed-card__lock-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.gc-feed-card__lock-cta {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: filter 0.15s ease;
}

.gc-feed-card__lock-cta:hover,
.gc-feed-card__lock-cta:focus {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}

/* Meta footer — likes / comments / tips */
.gc-feed-card__meta {
    margin-top: auto;
    display: flex;
    gap: 0.9rem;
    padding: 0.55rem 0.85rem 0.85rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.gc-feed-card__metric {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.gc-feed-card__metric--tips {
    color: var(--gc-accent);
    font-weight: 600;
}

/* Empty state */
.gc-storefront-feed .gc-empty-state {
    padding: 1.5rem 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Mobile tuning */
@media (max-width: 600px) {
    .gc-feed-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* ----------------------------------------------------------------------
 *  Phase 3b: full-post modal + gallery + clip player
 * ------------------------------------------------------------------- */

.gc-feed-card {
    cursor: pointer;
    outline-offset: 3px;
}
.gc-feed-card[tabindex]:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.gc-feed-grid__end {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    padding: 1rem 0;
}

.gc-feed-load-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.gc-feed-load-more {
    padding: 0.65rem 1.6rem;
    border-radius: var(--gc-radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-weight: 600;
}
.gc-feed-load-more:hover { background: rgba(255, 255, 255, 0.18); }

/* Modal shell */
body.gc-feed-modal-open { overflow: hidden; }

.gc-feed-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}
.gc-feed-modal.is-open { display: block; }

.gc-feed-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.gc-feed-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, calc(100vw - 24px));
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.gc-feed-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.gc-feed-modal__close:hover { background: rgba(0, 0, 0, 0.8); }

.gc-feed-modal__loading,
.gc-feed-modal__error {
    padding: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.gc-feed-modal__content .gc-feed-full {
    display: block;
    padding: 1rem 1.25rem 1.25rem;
}

/* Full post */
.gc-feed-full__header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-right: 2rem;
    margin-bottom: 0.75rem;
}
.gc-feed-full__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gc-feed-full__byline {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gc-feed-full__author { color: #fff; font-weight: 600; font-size: 0.95rem; }
.gc-feed-full__date   { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.gc-feed-full__badge {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: var(--gc-radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}
.gc-feed-full--subscribers .gc-feed-full__badge {
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
}

.gc-feed-full__title {
    margin: 0 0 0.85rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Full-post gallery */
.gc-feed-full__gallery {
    position: relative;
    margin: 0 0 1rem;
    background: #000;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gc-feed-full__gallery--blurred img { filter: blur(30px) scale(1.1); }
.gc-feed-full__gallery-item {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gc-feed-full__gallery-item.is-active { opacity: 1; z-index: 1; }
.gc-feed-full__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}
.gc-feed-full__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}
.gc-feed-full__gallery-nav:hover { background: rgba(0, 0, 0, 0.8); }
.gc-feed-full__gallery-nav--prev { left: 10px; }
.gc-feed-full__gallery-nav--next { right: 10px; }
.gc-feed-full__gallery-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.18rem 0.55rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    font-size: 0.72rem;
    z-index: 2;
}

/* Clip player */
.gc-feed-full__clip {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    overflow: hidden;
    margin: 0 0 1rem;
}
.gc-feed-full__clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gc-feed-full__clip--locked img { filter: blur(20px) scale(1.1); }
.gc-feed-full__clip-video {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
}
.gc-feed-full__clip-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.gc-feed-full__clip-play:hover { background: rgba(0, 0, 0, 0.85); }
.gc-feed-full__clip-play.is-loading { opacity: 0.5; cursor: wait; }

.gc-feed-full__body {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    /* v4.51.0: defensive wrap for run-on text + long URLs in gallery posts */
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}
.gc-feed-full__body * { max-width: 100%; }
.gc-feed-full__body p { margin: 0 0 0.75rem; }

.gc-feed-full__lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem;
    margin-bottom: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(var(--gc-accent-2-rgb), 0.08);
    text-align: center;
}
.gc-feed-full__lock-icon { font-size: 1.6rem; }
.gc-feed-full__lock-text { margin: 0; color: rgba(255, 255, 255, 0.85); }
.gc-feed-full__lock-cta {
    padding: 0.6rem 1.2rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.gc-feed-full__lock-cta:hover { filter: brightness(1.1); color: #fff; text-decoration: none; }

.gc-feed-full__meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gc-feed-full__metric { display: inline-flex; align-items: center; gap: 0.3rem; }
.gc-feed-full__metric--tips { color: var(--gc-accent); font-weight: 600; }

@media (max-width: 600px) {
    .gc-feed-modal__dialog { width: 100vw; max-height: 100vh; border-radius: 0; top: 0; left: 0; transform: none; }
}


/* ----------------------------------------------------------------------
 *  Phase 4: likes / comments / tips
 * ------------------------------------------------------------------- */

.gc-feed-full__btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font: inherit;
    padding: 4px 8px;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    transition: background 0.1s ease, color 0.1s ease;
}
.gc-feed-full__btn:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.gc-feed-full__btn[disabled] { opacity: 0.5; cursor: wait; }

.gc-feed-full__like-btn.is-liked { color: #ff5a7a; }
.gc-feed-full__like-btn.is-liked .gc-feed-full__like-icon { animation: gc-feed-pop 0.28s ease; }
@keyframes gc-feed-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.gc-feed-full__tip-btn { color: var(--gc-accent); }
.gc-feed-full__tip-btn:hover { background: rgba(var(--gc-accent-rgb), 0.12); color: var(--gc-accent); }

.gc-feed-full__comments {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gc-feed-full__comments-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 0.6rem;
}
.gc-feed-full__comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.8rem;
}
.gc-feed-full__comment {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}
.gc-feed-full__comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gc-feed-full__comment-body {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.45rem 0.65rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
}
.gc-feed-full__comment-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}
.gc-feed-full__comment-head strong { color: #fff; font-weight: 600; }
.gc-feed-full__comment-head time { font-weight: normal; }
.gc-feed-full__comment-del {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
}
.gc-feed-full__comment-del:hover { color: #ff5a7a; }
.gc-feed-full__comment-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
}
.gc-feed-full__comment-text p { margin: 0 0 0.4rem; }
.gc-feed-full__comment-text p:last-child { margin: 0; }

.gc-feed-full__comments-more {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 0.9rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 0.8rem;
}
.gc-feed-full__comments-more:hover { background: rgba(255, 255, 255, 0.06); }

.gc-feed-full__composer {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.gc-feed-full__composer textarea {
    flex: 1;
    min-height: 44px;
    max-height: 140px;
    resize: vertical;
    padding: 0.55rem 0.75rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
}
.gc-feed-full__composer textarea:focus {
    outline: none;
    border-color: rgba(var(--gc-accent-2-rgb), 0.6);
    background: rgba(255, 255, 255, 0.07);
}
.gc-feed-full__composer-submit {
    padding: 0.55rem 1.1rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.gc-feed-full__composer-submit:hover:not([disabled]) { filter: brightness(1.1); }
.gc-feed-full__composer-submit[disabled] { opacity: 0.5; cursor: wait; }

.gc-feed-full__composer-guest {
    margin: 0;
    padding: 0.55rem 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
}


/* ----------------------------------------------------------------------
 *  Timeline redesign (2026-04-24)
 * ------------------------------------------------------------------- */

/* Grid becomes single-column vertical timeline */
.gc-feed-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 780px;
    margin: 0 auto;
    gap: 1.25rem;
}
@media (max-width: 600px) { .gc-feed-grid { gap: 1rem; } }

.gc-feed-timeline-item {
    cursor: default !important;
    width: 100%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
}
.gc-feed-timeline-item:hover { transform: none; border-color: rgba(255,255,255,0.12); }

.gc-feed-timeline-item__header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem 0.6rem;
}
.gc-feed-timeline-item__avatar,
.gc-feed-timeline-item__avatar-link img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gc-feed-timeline-item__avatar-link { display: block; line-height: 0; flex-shrink: 0; }
.gc-feed-timeline-item__byline {
    flex: 1;
    min-width: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.gc-feed-timeline-item__author {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}
.gc-feed-timeline-item__author:hover { color: rgba(255,255,255,0.85); }
.gc-feed-timeline-item__date {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    text-decoration: none;
}
.gc-feed-timeline-item__date:hover { color: rgba(255,255,255,0.8); }
.gc-feed-timeline-item__badge {
    padding: 0.18rem 0.55rem;
    border-radius: var(--gc-radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}
.gc-feed-timeline-item__badge--subscribers {
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
}

.gc-feed-timeline-item__title {
    margin: 0 1rem 0.5rem;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
}

.gc-feed-timeline-item__body {
    padding: 0 1rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.55;
    word-break: break-word;
}
.gc-feed-timeline-item__body p { margin: 0 0 0.55rem; }
.gc-feed-timeline-item__body p:last-child { margin: 0; }

/* Media */
.gc-feed-timeline-item__media {
    position: relative;
    margin: 0 0 0.6rem;
    background: #000;
    aspect-ratio: 4 / 5;
    max-height: 720px;
    overflow: hidden;
}
.gc-feed-timeline-item__media img,
.gc-feed-timeline-item__clip-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gc-feed-timeline-item__placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(var(--gc-accent-2-rgb), 0.25), rgba(0,0,0,0.6));
}

/* Clip */
.gc-feed-timeline-item__clip--locked img { filter: blur(20px) scale(1.08); }
.gc-feed-timeline-item__clip-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.85);
    cursor: pointer;
    font-size: 24px;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.gc-feed-timeline-item__clip-play:hover { background: rgba(0,0,0,0.85); }
.gc-feed-timeline-item__clip-duration {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.18rem 0.55rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    z-index: 2;
}
.gc-feed-timeline-item__clip-lock {
    position: absolute; top: 12px; right: 12px;
    font-size: 1.2rem;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.gc-feed-full__clip-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 3;
}

/* Gallery */
.gc-feed-timeline-item__gallery { aspect-ratio: 4 / 5; max-height: 720px; }
.gc-feed-timeline-item__gallery--blurred img { filter: blur(28px) scale(1.08); }
.gc-feed-timeline-item__gallery-item {
    position: absolute; inset: 0; margin: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gc-feed-timeline-item__gallery-item.is-active { opacity: 1; z-index: 1; }
.gc-feed-timeline-item__gallery-item img { object-fit: contain; background: #000; }
.gc-feed-timeline-item__gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}
.gc-feed-timeline-item__gallery-nav:hover { background: rgba(0,0,0,0.85); }
.gc-feed-timeline-item__gallery-nav--prev { left: 8px; }
.gc-feed-timeline-item__gallery-nav--next { right: 8px; }
.gc-feed-timeline-item__gallery-count {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.18rem 0.55rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    font-size: 0.72rem;
    z-index: 2;
}

/* Lock callout */
.gc-feed-timeline-item__lock {
    margin: 0 1rem 0.8rem;
    padding: 0.9rem;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(var(--gc-accent-2-rgb), 0.08);
    text-align: center;
}
.gc-feed-timeline-item__lock-icon { font-size: 1.5rem; }
.gc-feed-timeline-item__lock-text { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.gc-feed-timeline-item__lock-cta {
    padding: 0.55rem 1.1rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.gc-feed-timeline-item__lock-cta:hover { filter: brightness(1.1); color: #fff; text-decoration: none; }

/* Actions row */
.gc-feed-timeline-item__actions {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.35rem 0.5rem 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.gc-feed-timeline-item__action { display: inline-flex; align-items: center; gap: 0.3rem; padding: 6px 10px; }
.gc-feed-timeline-item__report { margin-left: auto; opacity: 0.4; }
.gc-feed-timeline-item__report:hover { opacity: 1; color: #ff9d5a; }

/* Inline comments preview */
.gc-feed-timeline-item__comments {
    padding: 0.35rem 1rem 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.gc-feed-timeline-item__comments-preview { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.65rem; }
.gc-feed-timeline-item__comment-preview { display: flex; gap: 0.4rem; align-items: flex-start; }
.gc-feed-timeline-item__comment-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.gc-feed-timeline-item__comment-text {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.gc-feed-timeline-item__comment-text strong { color: #fff; font-weight: 600; margin-right: 0.3rem; }
.gc-feed-timeline-item__comments-view-all {
    display: inline-block;
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    text-decoration: none;
}
.gc-feed-timeline-item__comments-view-all:hover { color: rgba(255,255,255,0.85); }
.gc-feed-timeline-item__composer textarea { min-height: 36px; }
.gc-feed-timeline-item__composer {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    padding-top: 0.3rem;
}


/* Tip picker modal */
.gc-feed-tip-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
}
.gc-feed-tip-modal[hidden] { display: none; }
.gc-feed-tip-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}
.gc-feed-tip-modal__dialog {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, calc(100vw - 32px));
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
    padding: 1.25rem 1.4rem;
    color: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.gc-feed-tip-modal__close {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.gc-feed-tip-modal__close:hover { background: rgba(0,0,0,0.7); }
.gc-feed-tip-modal__title { margin: 0 0 0.35rem; color: #fff; font-size: 1.15rem; }
.gc-feed-tip-modal__hint { margin: 0 0 0.9rem; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.gc-feed-tip-modal__tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}
.gc-feed-tip-modal__tiers button {
    padding: 0.6rem 0;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.gc-feed-tip-modal__tiers button:hover { background: rgba(255,255,255,0.1); }
.gc-feed-tip-modal__tiers button.is-active {
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-accent-strong));
    color: #1a1a1a;
    border-color: var(--gc-accent);
}
.gc-feed-tip-modal__custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.gc-feed-tip-modal__custom span { color: rgba(255,255,255,0.7); font-size: 0.85rem; min-width: 56px; }
.gc-feed-tip-modal__custom input {
    flex: 1;
    padding: 0.55rem 0.7rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 0.9rem;
}
.gc-feed-tip-modal__actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.gc-feed-tip-modal__cancel,
.gc-feed-tip-modal__send {
    padding: 0.55rem 1.1rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.gc-feed-tip-modal__cancel {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}
.gc-feed-tip-modal__cancel:hover { background: rgba(255,255,255,0.16); }
.gc-feed-tip-modal__send {
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-accent-strong));
    color: #1a1a1a;
}
.gc-feed-tip-modal__send:hover { filter: brightness(1.05); }
.gc-feed-tip-modal__send[disabled] { opacity: 0.5; cursor: wait; }
.gc-feed-tip-modal__error {
    margin-top: 0.7rem;
    padding: 0.55rem 0.75rem;
    background: rgba(var(--gc-accent-2-rgb), 0.15);
    border: 1px solid rgba(var(--gc-accent-2-rgb), 0.35);
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    color: #ff9d9d;
    font-size: 0.85rem;
}


/* ======================================================================
 *  Modern two-column layout + glassy cards + refreshed polish (2026-04-24)
 * ==================================================================== */

.gc-feed-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .gc-feed-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: start;
    }
    .gc-feed-sidebar {
        position: sticky;
        top: 88px;
    }
}

.gc-feed-timeline-col {
    min-width: 0;
}
.gc-feed-timeline-col .gc-feed-grid {
    max-width: none !important;
    margin: 0 !important;
}

/* ------- Sidebar card (creator flavour) -------------------------- */
.gc-feed-sidebar {
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: calc(var(--gc-radius-scale, 1) * 18px);
    padding: 1.2rem 1.25rem 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.gc-feed-sidebar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-accent-2), var(--gc-accent), var(--gc-accent-2));
    opacity: 0.9;
}

.gc-feed-sidebar__hero {
    text-align: center;
    padding-top: 0.6rem;
}
.gc-feed-sidebar__avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    margin: 0 auto 0.7rem;
    display: block;
}
.gc-feed-sidebar__name {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.15;
}
.gc-feed-sidebar__name a { color: #fff; text-decoration: none; }
.gc-feed-sidebar__name a:hover { color: rgba(255,255,255,0.85); }
.gc-feed-sidebar__bio {
    margin: 0 0 0.9rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.86rem;
    line-height: 1.45;
}

.gc-feed-sidebar__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* v4.51.18: 3 equal cols, PHOTOS no longer clips */
    gap: 0.5rem;
    margin: 0 0 0.9rem;
}
.gc-feed-sidebar__stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    background: linear-gradient(145deg, rgba(var(--gc-accent-rgb), 0.10), rgba(var(--gc-accent-2-rgb), 0.06));
    border: 1px solid rgba(var(--gc-accent-rgb), 0.22);
    border-radius: calc(var(--gc-radius-scale, 1) * 12px);
    padding: 0.55rem 0.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.gc-feed-sidebar__stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(var(--gc-accent-rgb), 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}
.gc-feed-sidebar__stat:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--gc-accent-rgb), 0.4);
    box-shadow: 0 8px 20px rgba(var(--gc-accent-rgb), 0.12);
}
.gc-feed-sidebar__stat:hover::before { opacity: 1; }
.gc-feed-sidebar__stat--clips {
    background: linear-gradient(145deg, rgba(var(--gc-accent-2-rgb), 0.12), rgba(var(--gc-accent-rgb), 0.06));
    border-color: rgba(var(--gc-accent-2-rgb), 0.24);
}
.gc-feed-sidebar__stat--clips::before {
    background: radial-gradient(circle at top left, rgba(var(--gc-accent-2-rgb), 0.2), transparent 60%);
}
.gc-feed-sidebar__stat--clips:hover {
    border-color: rgba(var(--gc-accent-2-rgb), 0.45);
    box-shadow: 0 8px 20px rgba(var(--gc-accent-2-rgb), 0.14);
}
.gc-feed-sidebar__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(255,255,255,0.06);
    color: var(--gc-accent);
    position: relative;
    z-index: 1;
}
.gc-feed-sidebar__stat--clips .gc-feed-sidebar__stat-icon { color: #a78bfa; }
.gc-feed-sidebar__stat-icon svg { display: block; width: 18px; height: 18px; }
.gc-feed-sidebar__stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.gc-feed-sidebar__stat-text dt {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}
.gc-feed-sidebar__stat-text dd { white-space: nowrap; }
.gc-feed-sidebar__stat-text dd {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.gc-feed-sidebar__cta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.gc-feed-sidebar__subscribe,
.gc-feed-sidebar__store-link,
.gc-feed-sidebar__subscribed-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 12px);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: filter 0.15s ease, background 0.15s ease;
}
.gc-feed-sidebar__subscribe {
    background: linear-gradient(135deg, var(--gc-accent-2), #5b21b6);
    color: #fff;
    box-shadow: 0 8px 22px rgba(var(--gc-accent-2-rgb), 0.4);
}
.gc-feed-sidebar__subscribe:hover { filter: brightness(1.08); color: #fff; text-decoration: none; }
.gc-feed-sidebar__store-link {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.08);
}
.gc-feed-sidebar__store-link:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.gc-feed-sidebar__subscribed-chip {
    background: rgba(46,160,67,0.18);
    color: #7ee08a;
    border: 1px solid rgba(46,160,67,0.35);
    cursor: default;
}

.gc-feed-sidebar__thumbs-wrap {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.85rem;
}
.gc-feed-sidebar__thumbs-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.55);
    margin: 0 0 0.55rem;
    font-weight: 600;
}
.gc-feed-sidebar__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.gc-feed-sidebar__thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: calc(var(--gc-radius-scale, 1) * 8px);
    overflow: hidden;
    background: #000;
    display: block;
}
.gc-feed-sidebar__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}
.gc-feed-sidebar__thumb:hover img { transform: scale(1.06); }
.gc-feed-sidebar__thumb-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ------- Sidebar (/my-feed/ flavour) ----------------------------- */
.gc-feed-sidebar--myfeed { padding-top: 1rem; }
.gc-feed-sidebar__title {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    margin: 0 0 0.7rem;
    font-weight: 700;
}
.gc-feed-sidebar__creators {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.gc-feed-sidebar__creator-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.55rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    text-decoration: none;
    transition: background 0.15s ease;
}
.gc-feed-sidebar__creator-link:hover {
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}
.gc-feed-sidebar__creator-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gc-feed-sidebar__creator-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}
.gc-feed-sidebar__creator-body strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gc-feed-sidebar__creator-body span {
    color: rgba(255,255,255,0.55);
    font-size: 0.76rem;
}

/* ======================================================================
 *  Glassy timeline card polish
 * ==================================================================== */

.gc-feed-timeline-item {
    background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: calc(var(--gc-radius-scale, 1) * 18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.gc-feed-timeline-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--gc-radius-scale, 1) * 19px);
    padding: 1px;
    background: linear-gradient(140deg, rgba(var(--gc-accent-2-rgb), 0.4), rgba(var(--gc-accent-rgb), 0.25) 40%, rgba(255,255,255,0.0) 80%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.gc-feed-timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(0,0,0,0.45), 0 4px 18px rgba(var(--gc-accent-2-rgb), 0.12);
    border-color: rgba(255,255,255,0.14);
}
.gc-feed-timeline-item:hover::before { opacity: 1; }

.gc-feed-timeline-item__header { padding-right: 1rem; }
.gc-feed-timeline-item__author { letter-spacing: -0.01em; }

/* SUBSCRIBERS badge — animated subtle shimmer */
.gc-feed-timeline-item__badge--subscribers {
    background-image: linear-gradient(90deg, var(--gc-accent-2) 0%, #a78bfa 50%, var(--gc-accent-2) 100%);
    background-size: 200% 100%;
    animation: gc-feed-shimmer 5s linear infinite;
    box-shadow: 0 4px 14px rgba(var(--gc-accent-2-rgb), 0.35);
}
@keyframes gc-feed-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Actions row → pill buttons */
.gc-feed-timeline-item__actions {
    padding: 0.45rem 0.65rem 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 0.35rem;
}
.gc-feed-timeline-item__action {
    border-radius: var(--gc-radius-pill) !important;
    padding: 8px 14px !important;
    font-size: 0.86rem;
    transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.gc-feed-timeline-item__action:hover { transform: translateY(-1px); }

/* Like button → heart burst */
.gc-feed-full__like-btn .gc-feed-full__like-icon {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    font-size: 1.05rem;
}
.gc-feed-full__like-btn.is-liked .gc-feed-full__like-icon {
    color: #ff4a7a;
    text-shadow: 0 0 18px rgba(255, 74, 122, 0.55);
}
.gc-feed-full__like-btn.is-liked::after {
    content: "";
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,74,122,0.8) 0%, transparent 70%);
    left: 14px; top: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: gc-feed-burst 0.55s ease-out 1;
    pointer-events: none;
}
@keyframes gc-feed-burst {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}

/* Tip button — gold hover */
.gc-feed-full__tip-btn:hover {
    background: linear-gradient(135deg, rgba(var(--gc-accent-rgb), 0.2), rgba(var(--gc-accent-strong-rgb), 0.12));
    color: #b6f2e8;
}

/* Better typography */
.gc-feed-timeline-item__title {
    font-size: 1.12rem;
    letter-spacing: -0.01em;
    line-height: 1.28;
}
.gc-feed-timeline-item__body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
}
.gc-feed-timeline-item__body p:first-child { margin-top: 0; }

/* Page-section header (Feed title) */
.gc-storefront-feed .gc-section-header h2 {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

/* /my-feed/ header */
.gc-my-feed__header {
    margin-bottom: 1rem;
    padding: 1.25rem 0 0.75rem;
}
.gc-my-feed__header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.75));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 0.3rem;
}
.gc-my-feed__header p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .gc-feed-layout { padding: 0 0.75rem; gap: 1rem; }
    .gc-feed-timeline-item { border-radius: calc(var(--gc-radius-scale, 1) * 14px); }
    .gc-feed-timeline-item__actions { padding: 0.35rem 0.45rem 0.55rem; gap: 0.15rem; }
    .gc-feed-timeline-item__action { padding: 6px 10px !important; font-size: 0.82rem; }
    .gc-feed-sidebar { border-radius: calc(var(--gc-radius-scale, 1) * 14px); }
    .gc-my-feed__header h1 { font-size: 1.75rem; }
    .gc-storefront-feed .gc-section-header h2 { font-size: 1.4rem; }
}


/* ======================================================================
 *  Feedback fixes (2026-04-24): 16:9 media, prominent duration, gold
 *  subscribe, Feed-tab highlight, media→modal click
 * ==================================================================== */

/* 16:9 media — overrides earlier 4/5 rule */
.gc-feed-timeline-item__media,
.gc-feed-timeline-item__gallery,
.gc-feed-timeline-item__clip {
    aspect-ratio: 16 / 9 !important;
    max-height: 520px;
}

/* Make clickable media behave like a link */
.gc-feed-timeline-item__media--link {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.gc-feed-timeline-item__gallery[data-gc-feed-open-modal] {
    cursor: pointer;
}
.gc-feed-timeline-item__gallery[data-gc-feed-open-modal]:focus-visible {
    outline: 2px solid rgba(var(--gc-accent-rgb), 0.8);
    outline-offset: 3px;
}

/* Prominent duration badge — bigger, with clock glyph + stronger contrast */
.gc-feed-timeline-item__clip-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 0.45rem 0.75rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(0,0,0,0.78);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    z-index: 3;
}
.gc-feed-timeline-item__clip-duration-icon {
    font-size: 1rem;
    color: var(--gc-accent);
    line-height: 1;
}

/* Click-hint play overlay on the clip media — becomes a soft circle on hover */
.gc-feed-timeline-item__clip-play {
    pointer-events: none; /* parent <a> handles the click */
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
    width: 78px !important; height: 78px !important;
    background: rgba(0,0,0,0.55);
    border: 2.5px solid rgba(255,255,255,0.92) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(0,0,0,0.72);
}

/* Gold Subscribe button — matching the storefront "Subscribe now" look */
.gc-feed-sidebar__subscribe--gold,
.gc-feed-timeline-item__lock-cta--gold {
    background: linear-gradient(135deg, var(--gc-accent) 0%, var(--gc-accent) 50%, var(--gc-accent-strong) 100%);
    color: #1b1205 !important;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(var(--gc-accent-rgb), 0.35);
    border: 1px solid rgba(var(--gc-accent-rgb), 0.6);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.gc-feed-sidebar__subscribe--gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}
.gc-feed-sidebar__subscribe--gold:hover::before {
    transform: translateX(100%);
}
.gc-feed-sidebar__subscribe--gold:hover,
.gc-feed-timeline-item__lock-cta--gold:hover {
    filter: brightness(1.07);
    color: #1b1205 !important;
}

.gc-feed-sidebar__subscribe-icon {
    font-size: 1.05rem;
}
.gc-feed-sidebar__subscribe-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    line-height: 1.15;
}
.gc-feed-sidebar__subscribe-label strong { font-size: 0.95rem; }
.gc-feed-sidebar__subscribe-label small { font-size: 0.72rem; opacity: 0.8; }

/* Feed tab on creator storefront — gold accent so it stands out */
.gc-storefront-tab[data-gc-store-tab="feed"] {
    position: relative;
    background: linear-gradient(135deg, rgba(var(--gc-accent-rgb), 0.18), rgba(var(--gc-accent-2-rgb), 0.12)) !important;
    border: 1px solid rgba(var(--gc-accent-rgb), 0.4) !important;
    color: #b6f2e8 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 18px rgba(var(--gc-accent-rgb), 0.08);
    padding-right: 20px !important;
}
.gc-storefront-tab[data-gc-store-tab="feed"]:hover {
    background: linear-gradient(135deg, rgba(var(--gc-accent-rgb), 0.28), rgba(var(--gc-accent-2-rgb), 0.18)) !important;
    box-shadow: 0 0 28px rgba(var(--gc-accent-rgb), 0.2);
}
.gc-storefront-tab[data-gc-store-tab="feed"].is-active {
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-accent-strong)) !important;
    color: #1b1205 !important;
    border-color: var(--gc-accent) !important;
}
.gc-storefront-tab[data-gc-store-tab="feed"]::before {
    content: "★"; /* literal U+2605 BLACK STAR — bypasses any CSS escape ambiguity */
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gc-accent);
    font-size: 0.85rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(var(--gc-accent-rgb), 0.4));
    pointer-events: none;
}
.gc-storefront-tab[data-gc-store-tab="feed"].is-active::before {
    color: #1b1205;
    filter: none;
}
.gc-storefront-tab[data-gc-store-tab="feed"] {
    padding-left: 24px !important;
}

/* Media click affordance: subtle zoom on gallery hover to hint it's clickable */
.gc-feed-timeline-item__gallery[data-gc-feed-open-modal] .gc-feed-timeline-item__gallery-item img {
    transition: transform 0.35s ease;
}
.gc-feed-timeline-item__gallery[data-gc-feed-open-modal]:hover .gc-feed-timeline-item__gallery-item.is-active img {
    transform: scale(1.025);
}


/* ======================================================================
 *  Batch 3: filter bar, image-count badge, animated play button
 * ==================================================================== */

/* Filter bar (visibility pills) */
.gc-feed-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1rem;
    padding: 0;
}
.gc-feed-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: var(--gc-radius-pill);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gc-feed-filter-pill:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}
.gc-feed-filter-pill.is-active {
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-accent-strong));
    color: #1b1205;
    border-color: var(--gc-accent);
    box-shadow: 0 6px 18px rgba(var(--gc-accent-rgb), 0.25);
}

/* Creator filter dropdown */
.gc-feed-filter-creator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.1rem;
}
.gc-feed-filter-creator label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.gc-feed-filter-creator select {
    flex: 1;
    max-width: 320px;
    padding: 0.5rem 0.75rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.88rem;
    cursor: pointer;
}
.gc-feed-filter-creator select option { background: #1a1a1a; color: #fff; }

/* Prominent gallery count badge (📷 N photos) */
.gc-feed-timeline-item__gallery-count-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: calc(var(--gc-radius-scale, 1) * 10px);
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.gc-feed-timeline-item__gallery-count-icon {
    color: var(--gc-accent);
    font-size: 1rem;
    line-height: 1;
}
.gc-feed-timeline-item__gallery-count-badge--locked {
    background: linear-gradient(135deg, rgba(var(--gc-accent-2-rgb), 0.85), rgba(91,33,182,0.85));
    border: 1px solid rgba(var(--gc-accent-rgb), 0.4);
}

/* Animated flashy play button */
.gc-feed-timeline-item__clip-play--animated {
    background: radial-gradient(circle at center, rgba(var(--gc-accent-rgb), 0.35), rgba(0,0,0,0.65) 70%) !important;
    border: 2.5px solid rgba(var(--gc-accent-rgb), 0.95) !important;
    box-shadow:
        0 12px 32px rgba(0,0,0,0.65),
        0 0 0 0 rgba(var(--gc-accent-rgb), 0.6),
        inset 0 0 16px rgba(var(--gc-accent-rgb), 0.18) !important;
    animation: gc-feed-playpulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.gc-feed-timeline-item__clip-play--animated > span {
    font-size: 28px;
    margin-left: 4px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
@keyframes gc-feed-playpulse {
    0%   { box-shadow: 0 12px 32px rgba(0,0,0,0.65), 0 0 0 0 rgba(var(--gc-accent-rgb), 0.55), inset 0 0 16px rgba(var(--gc-accent-rgb), 0.18); transform: translate(-50%, -50%) scale(1); }
    50%  { box-shadow: 0 12px 32px rgba(0,0,0,0.65), 0 0 0 18px rgba(var(--gc-accent-rgb), 0.0), inset 0 0 24px rgba(var(--gc-accent-rgb), 0.3); transform: translate(-50%, -50%) scale(1.04); }
    100% { box-shadow: 0 12px 32px rgba(0,0,0,0.65), 0 0 0 0 rgba(var(--gc-accent-rgb), 0.0), inset 0 0 16px rgba(var(--gc-accent-rgb), 0.18); transform: translate(-50%, -50%) scale(1); }
}
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--animated {
    animation-duration: 1.4s;
    background: radial-gradient(circle at center, rgba(var(--gc-accent-rgb), 0.55), rgba(0,0,0,0.7) 70%) !important;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .gc-feed-filter-bar { gap: 0.3rem; }
    .gc-feed-filter-pill { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
    .gc-feed-filter-creator select { font-size: 0.85rem; padding: 0.45rem 0.6rem; }
    .gc-feed-timeline-item__gallery-count-badge { top: 10px; left: 10px; padding: 0.35rem 0.6rem; font-size: 0.78rem; }
    .gc-feed-timeline-item__clip-play--animated { width: 64px !important; height: 64px !important; }
    .gc-feed-timeline-item__clip-play--animated > span { font-size: 22px; }
}


/* ===== Polish batch 4: Read more affordance on truncated timeline body ===== */
.gc-feed-timeline-item__body-text {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.55;
    color: inherit;
}
.gc-feed-timeline-item__body-readmore {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gc-accent);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.15s ease, transform 0.15s ease;
}
.gc-feed-timeline-item__body-readmore:hover,
.gc-feed-timeline-item__body-readmore:focus-visible {
    color: #7ce6d5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transform: translateX(2px);
}


/* Polish batch 6 backdrop removed in batch 7 (wrong palette). */


/* ===== Polish batch 7: keep the locked-gallery modal blur + badges, drop the page backdrop ===== */
.gc-feed-full__gallery--locked img {
    filter: blur(32px) scale(1.1) !important;
    opacity: 0.9;
}
.gc-feed-full__gallery--locked { position: relative; overflow: hidden; }
.gc-feed-full__gallery-lock-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: rgba(var(--gc-bg-rgb), 0.72);
    color: var(--gc-text);
    padding: 6px 10px;
    border-radius: var(--gc-radius-pill);
    font-size: 1.05rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(var(--gc-accent-rgb), 0.35);
    box-shadow: 0 4px 18px rgba(3, 8, 21, 0.5);
}
.gc-feed-full__gallery-count--locked {
    position: absolute; bottom: 14px; right: 14px; z-index: 3;
    background: rgba(var(--gc-bg-rgb), 0.7);
    color: var(--gc-text);
    padding: 5px 11px;
    border-radius: var(--gc-radius-pill);
    font-weight: 600;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(var(--gc-border-rgb), 0.22);
}

/* Sidebar placeholder tile for text-only posts. */
.gc-feed-sidebar__thumb--placeholder {
    background: linear-gradient(135deg, rgba(var(--gc-accent-rgb), 0.16), rgba(var(--gc-accent-2-rgb), 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gc-text);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    padding: 6px;
    line-height: 1.25;
}


/* Polish batch 9 v2 — smooth inline-body swap (no blank flash). */
[data-gc-account-inline-body].gc-feed-inline-swapping {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
[data-gc-account-inline].is-loading .gc-account-inline-shell__status,
[data-gc-account-inline].is-loading [data-gc-account-inline-status] {
    display: block !important;
}


/* Polish batch 10 v3 — bring gold accent back to the storefront Feed tab,
 * keep teal/violet for everything else. Add a subtle pulse so users notice it. */
.gc-storefront-tab[data-gc-store-tab="feed"]::before {
    content: "★" !important; /* literal U+2605 BLACK STAR */
    color: #f3c968 !important;
    filter: drop-shadow(0 0 6px rgba(243, 201, 104, 0.55)) !important;
    animation: gc-feed-tab-star-pulse 2.2s ease-in-out infinite;
}
.gc-storefront-tab[data-gc-store-tab="feed"].is-active::before {
    color: #1a1205 !important;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0)) !important;
    animation: none;
}
@keyframes gc-feed-tab-star-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50%      { transform: translateY(-50%) scale(1.18); opacity: 0.85; }
}
/* Running gold shimmer across the inactive tab border every ~6s to catch the eye. */
.gc-storefront-tab[data-gc-store-tab="feed"]:not(.is-active) {
    overflow: hidden;
    border-color: rgba(243, 201, 104, 0.4) !important;
    box-shadow: 0 0 0 1px rgba(243, 201, 104, 0.08), 0 0 18px rgba(243, 201, 104, 0.10) !important;
}
.gc-storefront-tab[data-gc-store-tab="feed"]:not(.is-active)::after {
    content: "";
    position: absolute;
    top: 0; left: -40%;
    width: 40%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(243, 201, 104, 0.28) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: gc-feed-tab-shimmer 5.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes gc-feed-tab-shimmer {
    0%   { left: -40%; opacity: 0; }
    15%  { opacity: 1; }
    55%  { left: 120%; opacity: 0.9; }
    60%  { opacity: 0; }
    100% { left: 120%; opacity: 0; }
}
.gc-storefront-tab[data-gc-store-tab="feed"]:not(.is-active):hover {
    border-color: #f3c968 !important;
}
/* Reduced-motion guard. */
@media (prefers-reduced-motion: reduce) {
    .gc-storefront-tab[data-gc-store-tab="feed"]::before,
    .gc-storefront-tab[data-gc-store-tab="feed"]::after {
        animation: none !important;
    }
}

/* Polish batch 13 — expand feed main column, tighten sidebar padding on wide. */
@media (min-width: 1440px) {
    .gc-feed-layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .gc-feed-timeline-col .gc-feed-grid {
        max-width: none !important;
    }
    .gc-feed-timeline-col .gc-feed-timeline-item {
        font-size: 1rem;
    }
    .gc-feed-timeline-item__body {
        font-size: 1.02rem;
        line-height: 1.6;
    }
}

.gc-feed-sidebar__stat--photos {
    background: linear-gradient(145deg, rgba(251,191,36,0.14), rgba(var(--gc-accent-rgb), 0.06));
    border-color: rgba(251,191,36,0.28);
}
.gc-feed-sidebar__stat--photos::before {
    background: radial-gradient(circle at top left, rgba(251,191,36,0.22), transparent 60%);
}
.gc-feed-sidebar__stat--photos:hover {
    border-color: rgba(251,191,36,0.5);
    box-shadow: 0 8px 20px rgba(251,191,36,0.16);
}
.gc-feed-sidebar__stat--photos .gc-feed-sidebar__stat-icon { color: #fbbf24; }

/* v4.51.1 — modal pre-populated card with subtle loading overlay */
.gc-feed-modal__loading-card { position: relative; }
.gc-feed-modal__loading-overlay {
    position: absolute; top: 12px; right: 12px;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(var(--gc-bg-rgb), 0.78);
    border: 1px solid rgba(var(--gc-accent-rgb), 0.4);
    border-radius: var(--gc-radius-pill);
    color: var(--gc-text); font-size: 0.78rem; font-weight: 600;
    backdrop-filter: blur(6px);
    z-index: 10;
}
.gc-feed-modal__loading-spinner {
    width: 12px; height: 12px;
    border: 2px solid rgba(255,255,255,0.18);
    border-top-color: var(--gc-accent);
    border-radius: 50%;
    animation: gc-feed-modal-spin 0.7s linear infinite;
}
@keyframes gc-feed-modal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .gc-feed-modal__loading-spinner { animation: none; }
}

/* v4.51.3 — modern centered play button (replaces .gc-feed-playpulse animated style).
   The previous --animated variant pulsed and could drift off-center on mobile.
   This is a clean white triangle on a translucent black disc with a subtle hover. */
.gc-feed-timeline-item__clip-play--modern,
.gc-feed-timeline-item__clip-play--animated {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(var(--gc-bg-rgb), 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), inset 0 0 0 0 rgba(255, 255, 255, 0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.18s ease, border-color 0.18s ease;
    animation: none !important;
    z-index: 2;
}
.gc-feed-timeline-item__clip-play--modern svg,
.gc-feed-timeline-item__clip-play--animated svg {
    width: 26px;
    height: 26px;
    margin-left: 2px; /* optical-correct the triangle's center of mass */
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--modern,
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--animated {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(var(--gc-accent-rgb), 0.18);
    border-color: rgba(var(--gc-accent-rgb), 0.95) !important;
}
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--modern svg,
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--animated svg {
    color: #fff;
}
/* Kill the inherited --animated keyframes + sizing tweaks that override our SVG. */
.gc-feed-timeline-item__clip-play--animated > span {
    display: none !important;
}
@keyframes gc-feed-playpulse-disabled { 0%,100% { opacity: 1; } }

/* v4.51.3 — body lock without scroll jump.
   `body.gc-feed-modal-open { overflow: hidden }` triggered the page to snap
   to top because removing the scrollbar reflows the document.  We pair this
   class with JS-driven position:fixed + saved scrollY (see frontend.js). */
body.gc-feed-modal-open[data-gc-scroll-lock] {
    position: fixed;
    width: 100%;
    overflow-y: scroll; /* keep the scrollbar gutter so layout stays stable */
}

/* v4.51.5 — refined modern play button.  Larger, no border, gradient depth,
   strong drop-shadow.  Applied to BOTH the timeline-card overlay and the
   in-modal full-post player so they share one visual identity.  */
.gc-feed-timeline-item__clip-play--modern,
.gc-feed-timeline-item__clip-play--animated,
.gc-feed-full__clip-play--modern,
.gc-feed-full__clip-play {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 92px !important;
    height: 92px !important;
    border-radius: 50% !important;
    border: 0 !important;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), rgba(255,255,255,0) 55%),
        linear-gradient(140deg, rgba(var(--gc-accent-rgb), 0.95), rgba(var(--gc-accent-2-rgb), 0.92)) !important;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 0 36px rgba(var(--gc-accent-rgb), 0.28) !important;
    color: #ffffff !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, filter 0.22s ease;
    animation: none !important;
    z-index: 3;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /* in-modal default is a clickable button — keep pointer events; cards' overlay
       lives inside an <a> so we disable pointer-events there separately. */
}
.gc-feed-timeline-item__clip-play--modern,
.gc-feed-timeline-item__clip-play--animated {
    pointer-events: none !important; /* parent <a> handles click */
    width: 88px !important;
    height: 88px !important;
}
.gc-feed-timeline-item__clip-play--modern svg,
.gc-feed-timeline-item__clip-play--animated svg,
.gc-feed-full__clip-play--modern svg,
.gc-feed-full__clip-play svg {
    width: 32px !important;
    height: 32px !important;
    margin-left: 3px !important;  /* optical centering of the triangle */
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--modern,
.gc-feed-timeline-item__media--link:hover .gc-feed-timeline-item__clip-play--animated,
.gc-feed-full__clip-play--modern:hover,
.gc-feed-full__clip-play:hover {
    transform: translate(-50%, -50%) scale(1.07) !important;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 0 60px rgba(var(--gc-accent-rgb), 0.45) !important;
    filter: brightness(1.05);
}
.gc-feed-full__clip-play.is-loading {
    opacity: 0.6 !important;
    cursor: wait !important;
}
@media (max-width: 600px) {
    .gc-feed-timeline-item__clip-play--modern,
    .gc-feed-timeline-item__clip-play--animated,
    .gc-feed-full__clip-play--modern,
    .gc-feed-full__clip-play {
        width: 72px !important;
        height: 72px !important;
    }
    .gc-feed-timeline-item__clip-play--modern svg,
    .gc-feed-timeline-item__clip-play--animated svg,
    .gc-feed-full__clip-play--modern svg,
    .gc-feed-full__clip-play svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* v4.51.5 — modal content swap fade.  When fetchAndOpen replaces the primed
   card with the full post, give it a brief crossfade so the swap doesn't
   look like a page reload. */
.gc-feed-modal__content {
    transition: opacity 0.22s ease;
}
.gc-feed-modal__content.is-fading-out { opacity: 0; }
.gc-feed-modal__content.is-fading-in  { opacity: 1; }

/* v4.51.10: scroll-perf containment.
   - content-visibility:auto lets the browser skip rendering off-screen cards entirely
   - contain:layout style paint scopes layout/paint work to the card box
   - contain-intrinsic-size reserves space so layout doesn't jump as cards mount
*/
.gc-feed-timeline-item,
.gc-feed-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px; /* v4.51.11: auto remembers actual height after first paint -> no scroll flicker */
    contain: layout style paint;
}

/* v4.51.10: throttle decorative infinite animations so they don't churn GPU
   when the tab is offscreen or the user is scrolling.  prefers-reduced-motion
   already kills them; here we also pause when the document is hidden. */
.gc-feed-tab-shimmer-active,
.gc-storefront-tab[data-gc-store-tab="feed"]::before,
.gc-storefront-tab[data-gc-store-tab="feed"]:not(.is-active)::after {
    animation-play-state: running;
}
html:has(:fullscreen) .gc-storefront-tab[data-gc-store-tab="feed"]::before,
html:not(:focus-within) .gc-storefront-tab[data-gc-store-tab="feed"]:not(.is-active)::after {
    animation-play-state: paused;
}


/* ======================================================================
 *  v4.51.11 — /my-feed/ centering + no-sidebar single column
 * ==================================================================== */
.gc-feed-layout--myfeed {
    /* v4.51.11: keep the inherited max-width:1360px from .gc-feed-layout so the main column has room. */
}
.gc-feed-layout--no-sidebar {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 880px;
}
@media (min-width: 1024px) {
    .gc-feed-layout--no-sidebar { grid-template-columns: minmax(0, 1fr) !important; }
}


/* ======================================================================
 *  v4.51.13 — Follow button on feed cards + modal header
 * ==================================================================== */
.gc-feed-follow-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255,255,255,0.18);
    background: linear-gradient(135deg, rgba(0,205,180,0.18), rgba(125,90,220,0.18));
    color: #fff;
    border-radius: var(--gc-radius-pill);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.18s, border-color 0.18s, transform 0.12s, opacity 0.18s;
    white-space: nowrap;
}
.gc-feed-follow-btn:hover {
    background: linear-gradient(135deg, rgba(0,205,180,0.32), rgba(125,90,220,0.32));
    border-color: rgba(255,255,255,0.32);
}
.gc-feed-follow-btn:active {
    transform: scale(0.96);
}
.gc-feed-follow-btn .gc-feed-follow-btn__icon {
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 700;
}
.gc-feed-follow-btn .gc-feed-follow-btn__label-following {
    display: none;
}
.gc-feed-follow-btn.is-following {
    background: rgba(0,205,180,0.18);
    border-color: rgba(0,205,180,0.55);
    color: #6ff0d8;
    cursor: default;
}
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__icon {
    content: "✓";
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__label-follow { display: none; }
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__label-following { display: inline; }
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__icon::before {
    content: "✓";
}
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__icon { font-size: 0; }
.gc-feed-follow-btn.is-following .gc-feed-follow-btn__icon::before { font-size: 0.85rem; }
.gc-feed-follow-btn.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
.gc-feed-follow-btn--modal {
    padding: 8px 14px;
    font-size: 0.85rem;
}

/* Place the follow button neatly inside the existing flex headers (which were already
   `display:flex; align-items:center; gap:…;` with an avatar + byline + badge). */
.gc-feed-timeline-item__header,
.gc-feed-full__header {
    flex-wrap: wrap;
}
.gc-feed-timeline-item__header .gc-feed-follow-btn,
.gc-feed-full__header .gc-feed-follow-btn {
    margin-left: auto;
}
.gc-feed-timeline-item__header .gc-feed-timeline-item__badge,
.gc-feed-full__header .gc-feed-full__badge {
    margin-left: 0; /* badge sits to the right of the follow button now */
}

@media (max-width: 540px) {
    .gc-feed-follow-btn {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
}


/* ======================================================================
 *  v4.51.16 — mobile touch-target floors + locked-card disabled metric
 * ==================================================================== */

/* Visual treatment for the read-only counters shown on locked posts (no AJAX). */
.gc-feed-timeline-item__action.is-disabled,
.gc-feed-full__metric.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

@media (max-width: 540px) {
    /* v4.51.17: WCAG 2.5.5 (Level AAA) requires ≥44×44 touch targets. */
    .gc-feed-timeline-item__action,
    .gc-feed-full__metric,
    .gc-feed-full__btn {
        min-height: 44px;
        min-width: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .gc-feed-follow-btn,
    .gc-feed-follow-btn--card,
    .gc-feed-follow-btn--modal {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .gc-feed-timeline-item__report {
        min-width: 44px;
        min-height: 44px;
    }
    /* Filter pills (All / Public / Subscribers) and creator dropdown also bumped. */
    .gc-feed-filter-pill {
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-flex;
        align-items: center;
    }
    .gc-feed-filter-creator select,
    [data-gc-feed-creator-select] {
        min-height: 44px;
    }
}


/* ======================================================================
 *  v4.51.17 — Follow → Unfollow hover-confirm toggle + WCAG 44px targets
 * ==================================================================== */

/* By default the unfollow label is hidden — only shown on hover/focus when is-following. */
.gc-feed-follow-btn__label-unfollow { display: none; }

/* When the user is already following, on hover the button morphs into "Unfollow" with red accent. */
.gc-feed-follow-btn.is-following:hover,
.gc-feed-follow-btn.is-following:focus-visible {
    background: rgba(220, 38, 38, 0.18);
    border-color: rgba(220, 38, 38, 0.55);
    color: #ff8b8b;
    cursor: pointer;
}
.gc-feed-follow-btn.is-following:hover .gc-feed-follow-btn__label-following,
.gc-feed-follow-btn.is-following:focus-visible .gc-feed-follow-btn__label-following {
    display: none;
}
.gc-feed-follow-btn.is-following:hover .gc-feed-follow-btn__label-unfollow,
.gc-feed-follow-btn.is-following:focus-visible .gc-feed-follow-btn__label-unfollow {
    display: inline;
}
.gc-feed-follow-btn.is-following:hover .gc-feed-follow-btn__icon::before,
.gc-feed-follow-btn.is-following:focus-visible .gc-feed-follow-btn__icon::before {
    content: "×"; /* swap from ✓ to × on hover */
}
/* On touch devices :hover is sticky/quirky — show "Unfollow" on tap (focus + active). */
@media (hover: none) {
    .gc-feed-follow-btn.is-following:active .gc-feed-follow-btn__label-following { display: none; }
    .gc-feed-follow-btn.is-following:active .gc-feed-follow-btn__label-unfollow { display: inline; }
}

/* While the AJAX is in flight, dim the button and disable interaction. */
.gc-feed-follow-btn.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

/* v4.51.18 — sidebar stat tile fix (PHOTOS label no longer clips), mobile fallback */
@media (max-width: 360px) {
    .gc-feed-sidebar__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* GC_FEED_SIDEBAR_INCLUDES — what's included list shown above the Subscribe button */
.gc-feed-sidebar__includes {
    margin: 0 0 12px;
    padding: 14px 14px 12px;
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
    background: linear-gradient(180deg, rgba(246, 196, 83, 0.10), rgba(246, 196, 83, 0.04));
    border: 1px solid rgba(246, 196, 83, 0.28);
}
.gc-feed-sidebar__includes-title {
    margin: 0 0 10px;
    color: #f6c453;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}
.gc-feed-sidebar__includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.gc-feed-sidebar__includes-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gc-text-soft);
    font-size: 13px;
    line-height: 1.4;
}
.gc-feed-sidebar__includes-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 196, 83, 0.18);
    color: #f6c453;
    border-radius: 50%;
}
.gc-feed-sidebar__includes-text {
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
}
.gc-feed-sidebar__includes-item--cancel .gc-feed-sidebar__includes-text {
    color: rgba(243, 246, 251, 0.78);
    font-size: 12px;
}
@media (max-width: 480px) {
    .gc-feed-sidebar__includes { padding: 12px; }
    .gc-feed-sidebar__includes-item { font-size: 12.5px; }
}
