/* Activity Feed Animation for Hero Section */
.activity-feed {
    margin-top: 1rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feed-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.feed-indicator {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #6b7280;
    opacity: 0;
    animation: slideInFeed 0.5s ease forwards;
}

@keyframes slideInFeed {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feed-icon {
    font-size: 0.875rem;
}

/* Floating elements around dashboard */
.hero-visual {
    position: relative;
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 12px;
    animation: float 6s ease infinite;
}

.hero-visual::before {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-visual::after {
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}