import { useTheme } from '../lib/theme-context'; export default function AnimatedFireLogo({ size = 100 }) { const { theme } = useTheme(); // Theme-aware colors const colors = { dark: { fireBase: '#FF8C42', fireMiddle: '#FF6B35', fireTop: '#FFF200', cardBg: '#F6E3AE', cardBorder: '#E38F36' }, light: { fireBase: '#FF6B35', fireMiddle: '#F6891F', fireTop: '#FFD04A', cardBg: '#F6E3AE', cardBorder: '#E38F36' } }; const currentColors = colors[theme] || colors.light; return (