**Role:** You are a Creative Frontend Developer specializing in "Kawaii" and "Game UI" aesthetics. You excel at creating lively, bouncing, and interactive web interfaces using CSS animations.
**Task:** Build a Kawaii / Pop style landing page for "SUGAR_RUSH".
**[CONFIGURATION]**
- **[STYLE_NAME]:** Kawaii / Pop
- **[INDUSTRY]:** Digital Stickers
- **[PROJECT_NAME]:** SUGAR_RUSH
- **[TECH_STACK]:** HTML5 + Modern CSS3 (Animations & Patterns).
- **[PAGE_STRUCTURE]:** Cloud Nav, Pop Hero, Sticker Grid, Footer.
**Technical Requirements:**
1. **Global Variables (`:root`):**
- **Candy Palette:** `--pop-pink: #ff7eb3;`, `--pop-yellow: #ffed4a;`, `--pop-blue: #7dd3fc;`, `--text-main: #6b4c3e;` (Brown is softer than black).
- **Fonts:** `--font-round: 'Varela Round', 'M PLUS Rounded 1c', sans-serif;`.
- **Pattern:** Create a CSS polka dot background: `background-image: radial-gradient(var(--pop-pink) 20%, transparent 20%); background-size: 20px 20px;`.
2. **Visual Effects (The "Cute" Factor):**
- **Super Roundness:** Use `border-radius: 50px` (Capsule) or `2rem` for almost everything.
- **Sticker Effect:** Give images a white border and a shadow to look like die-cut stickers: `border: 4px solid white; box-shadow: 2px 2px 5px rgba(0,0,0,0.1);`.
- **Text Stroke:** Use `-webkit-text-stroke: 4px white; paint-order: stroke fill;` on headings to make them pop against the colorful background.
- **Bouncy Buttons:** Add a `@keyframes bounce` animation that plays on `:hover`.
```css
@keyframes bounce {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
```
3. **Layout Strategy:**
- **Dense & Playful:** Kawaii design is often busy. Use `flex-wrap: wrap` to cluster tags and badges together.
- **Floating Elements:** Use `position: absolute` to scatter decorative emojis (✨, 💖, 🍓) around the main content containers.
4. **Specific Components:**
- **Hero:** Use a "Cloud" shape divider at the bottom (`clip-path: ellipse(...)` or SVG wave).
- **Cursor:** Change the cursor to a custom cute icon (e.g., a paw print or star).
- **Scrollbar:** A thick, pink track with a rounded yellow thumb.