What problem does it solve? Styling a website without a shared design system leads to hardcoded colors, inconsistent spacing, and broken responsive layouts. This Skill enforces the Envilder website's pure CSS design system so every Astro component and page stays visually consistent across retro and light themes. ## Core Features & Use Cases - Theme-safe styling: Enforces CSS variables defined in both :root (retro) and [data-theme="light"] blocks, banning hardcoded hex colors. - Responsive layout rules: Mobile-first breakpoints at 640px and 1024px with reusable grid utilities like .grid-2, .grid-3, and .grid-4. - Component pattern library: Reusable classes such as .pixel-card, .pixel-shadow, .badge, and .scanlines for consistent retro visuals. - Use Case: When adding a new section to an Astro page, the Skill guides you to use existing spacing variables, fluid clamp() typography, and the correct component classes instead of inventing one-off styles. ## Quick Start Ask the AI to create a new Astro component for the website that follows the design system with theme-safe CSS variables and responsive grid layout.