Create a React counter component with the following features:
- Display current count (starts at 0)
- Increment button (+1)
- Decrement button (-1)
- Reset button (back to 0)
- The count should be displayed with proper styling
Requirements:
- Use React hooks (useState)
- Handle edge cases
- Make it visually appealing