## Task: Edit the main screen of the App (KMP / Compose Multiplatform)
**File for editing:** `MainScreen.kt` + icon files
---
### 1. Gender switch — line under the toolbar, on the left
One gray pill (`background = backgroundToolBar, shape = RoundedCornerShape(50.dp)`), inside two icons side by side without borders and boxes.
**Icon ⭐ (female):** standard 5-pointed star with **soft rounded ends** (like Material star with `corner radius`). Size = size of the cross. Color when active `#9442FF`, when inactive — gray `disableIcon`.
**Icon ➕ (male):** bold medical cross with **strongly rounded ends** (`border-radius ≈ 35%` of the width of the arm). Color when active `#E2211C`, when inactive — gray. Thickness of the arm ≈ 35% of the total size of the icon.
Both icons are of the same visual size. The distance between them is minimal (`spacedBy(6.dp)`).
**Reference:** link to icons on Figma
---
### 2. Language switch — line under the toolbar, on the right
Gray pill. Flag (`🇷🇺` or `🇬🇧`) + text `RU`/`EN`. When pressed, it switches `LocalLanguageState` and saves in `AppPreferences (AppPrefKey.Bool.IsRussian)`. Default is EN (`IsRussian = false`).
---
### 3. Tags around the figure (`YogaItemsBox`)
The positions of the tags are set by offsets in `YogaItemsBox.kt`. They need to be set as shown in the Figma screenshot:
- **3 tags on the left:** aligned to the left edge of the screen, evenly spaced vertically (top / middle / bottom of the figure)
- **3 tags on the right:** aligned to the right edge, same levels vertically
- Tags **do not overlap the face** of the figure
Offsets are passed as `Float` pairs `(x, y)` where `x` — from the center (`-` to the left, `+` to the right), `y` — from the center (`-` up, `+` down). Values should be visually adjusted on a real device.
---
### 4. What NOT to touch
- Navigation when clicking on tags and buttons — do not change
- `LocalGenderState`, `LocalLanguageState`, `AppPreferences` — logic is already implemented, just connect
- Three purple/red buttons (color taken from `LocalBBalanceColor.current.gender`) — do not touch
- Toolbar (logo + search) — do not touch
---
Immediately write your prices and approximate deadlines based on the project description