# SVG Management System\n\nThis directory contains an optimized SVG management system that provides multiple ways to use SVGs without JavaScript while maintaining performance and compatibility.\n\n## š File Structure\n\n```plaintext\nassets/\nāāā css/\nā āāā poster.css # Main styles\nā āāā svg-data.css # SVG data URIs and utilities\nāāā svg/\n āāā symbols.svg # Animated logo symbols (inline use)\n āāā decorative-sprites.svg # Decorative patterns and elements\n āāā README.md # This documentation\n```\n\n## šÆ SVG Management Strategies\n\n### 1. **Animated Symbols (Inline)**\n\n*For complex animations that need to be inline*\n\n```html\n\n\n```\n\n**Use for:**\n\n- Animated logos with CSS/SVG animations\n- Interactive elements requiring `:hover` states\n- Complex multi-element animations\n\n### 2. **Data URI Icons (CSS)**\n\n*For small, reusable icons*\n\n```css\n/* Load the SVG data system */\n@import url('assets/css/svg-data.css');\n\n/* Use in HTML */\n\n\n\n/* Or in CSS */\n.my-element::before {\n content: '';\n background-image: var(--icon-arrow-right);\n}\n```\n\n**Use for:**\n\n- Small icons (social, UI icons)\n- Repeated elements\n- Icons that need color theming\n\n### 3. **External Sprite Symbols**\n\n*For decorative, non-critical elements*\n\n```html\n\n\n\n\n