/* ===== MODERN SOCIAL FEED STYLES ===== */

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feed-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8860b 0%, #8b1538 100%);
    animation: avatarRotate 8s linear infinite;
}

@keyframes avatarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feed-user {
    flex: 1;
}

.feed-username {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.feed-time {
    font-size: 0.75rem;
    color: #64748b;
}

.feed-content {
    margin-bottom: 12px;
}

.content-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.content-hashtag {
    color: #daa520;
    font-weight: 500;
}

.content-media {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(139, 21, 56, 0.1));
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.media-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    animation: mediaFloat 3s ease-in-out infinite;
}

@keyframes mediaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.media-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.feed-stats {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: #64748b;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.feed-stats span:hover {
    color: #daa520;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .mockup-phone {
        width: 260px;
        height: 500px;
    }
    
    .social-feed-scroll {
        padding: 12px 10px;
    }
    
    .feed-post {
        padding: 12px;
    }
}
