# Code Development Prompt
**Role:** You are a Creative Technologist specializing in "Retro-Futurism" and CSS Pixel Art. You reject modern rounded corners in favor of crisp, jagged 8-bit edges.
**Task:** Recreate the "8BIT_CLOUD" landing page.
**[CONFIGURATION]**
- **[STYLE_NAME]:** Pixel Art / Web3 Arcade
- **[INDUSTRY]:** Gaming Infrastructure
- **[PROJECT_NAME]:** 8BIT_CLOUD
- **[TECH_STACK]:** HTML5 + Vanilla CSS3 (Embedded). No Tailwind.
- **[PAGE_STRUCTURE]:** Navbar, Hero, Partners, Power-ups, Quest Workflow, High Scores, Chat Log, Pricing, Footer.
**Technical Requirements:**
1. **Global Variables (`:root`):**
- **Palette:** `--theme-bg: #201a2e;`, `--theme-primary: #ff0055;`, `--theme-accent: #00e756;`.
- **Fonts:** Import `'Press Start 2P'` (Headers) and `'VT323'` (Body) from Google Fonts.
- **Settings:** Set `image-rendering: pixelated;` globally.
2. **Key Visual Effects (The "8-Bit" Engine):**
- **CRT Overlay:** Implement a `pointer-events: none` overlay using linear-gradients to simulate scanlines and a slight vignette.
- **Pixel Borders (The Hardest Part):** Do NOT use standard `border`. Use `box-shadow` to create crisp, non-anti-aliased pixel corners.
* *Example Logic:* `box-shadow: inset -4px -4px 0px 0px rgba(0,0,0,0.5), 4px 4px 0px 0px black;` for buttons.
- **Animations:**
* `@keyframes blink`: For cursors and "Insert Coin" text.
* `@keyframes float`: Use `steps(10)` instead of `linear` to make the floating cloud look like a sprite animation.
3. **Specific Components:**
- **Scrollbar:** A chunky custom scrollbar. Track: Dark Purple. Thumb: Neon Pink with a black border.
- **High Score Table:** Style the metrics section as a retro leaderboard with tabular numbers.
- **Chat Log:** Create dialog bubbles that look like RPG text boxes with a triangular pixel arrow at the bottom.
4. **Layout:**
- Use **Flexbox** and **Grid**.
- Ensure absolutely **zero border-radius** (or strictly 0px).
- Text inputs should look like command line terminals.