/* © WatchJunk – Live Feed */

.feed-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;
}

.feed-header {
    text-align: center;
    padding: 32px 0 24px;
}

.feed-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.feed-header h1 i {
    color: #00a3ff;
    margin-right: 6px;
}

.feed-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* Timeline */
.feed-timeline {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 60px;
}

/* Card */
.feed-card {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    animation: feedIn 0.3s ease forwards;
    opacity: 0;
}

.feed-card.pinned {
    background: rgba(0, 163, 255, 0.03);
    border-left: 2px solid rgba(0, 163, 255, 0.3);
    padding-left: 16px;
    margin-left: -16px;
    border-radius: 0 0 0 0;
}

.feed-pin {
    font-size: 0.7rem;
    color: #00a3ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feed-pin i {
    font-size: 0.6rem;
}

/* Meta */
.feed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.feed-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.feed-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

.feed-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.feed-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Text */
.feed-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 0;
}

/* Image */
.feed-image {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feed-image img {
    width: 100%;
    display: block;
}

/* Actions */
.feed-actions {
    margin-top: 12px;
    display: flex;
    gap: 16px;
}

.feed-like-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.feed-like-btn:hover {
    color: #ef4444;
}

.feed-like-btn.liked {
    color: #ef4444;
}

.feed-like-btn .like-count {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Empty */
.feed-empty {
    text-align: center;
    padding: 80px 0;
    color: rgba(255, 255, 255, 0.2);
}

.feed-empty i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

/* Animation */
@keyframes feedIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 640px) {
    .feed-container {
        padding: 0 12px;
    }

    .feed-header {
        padding: 20px 0 16px;
    }

    .feed-header h1 {
        font-size: 1.2rem;
    }

    .feed-card {
        padding: 16px 0;
    }

    .feed-text {
        font-size: 0.9rem;
    }

    .feed-image {
        border-radius: 8px;
    }
}
