diff --git a/.github/images/demo.png b/.github/images/demo.png
deleted file mode 100644
index 8f24df8..0000000
Binary files a/.github/images/demo.png and /dev/null differ
diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml
deleted file mode 100644
index 7820c80..0000000
--- a/.github/workflows/docker-build-push.yml
+++ /dev/null
@@ -1,72 +0,0 @@
-name: Build and Push Docker Image
-
-on:
- push:
- branches:
- - main
- workflow_dispatch:
-
-permissions:
- contents: read
- packages: write
-
-env:
- REGISTRY: ghcr.io
-
-jobs:
- build_and_push:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
-
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v3
-
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
-
- - name: Login to GHCR
- uses: docker/login-action@v3
- with:
- registry: ${{ env.REGISTRY }}
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Build Docker image
- uses: docker/build-push-action@v6
- with:
- context: .
- load: true
- platforms: linux/amd64
- tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/hamsterkombatbot:latest
-
- - name: Create .env file
- run: |
- echo "API_ID=12345" > .env
- echo "API_HASH=12345" >> .env
-
- - name: Run container
- run: |
- docker compose up -d
- docker compose ps
-
- - name: Check container status
- run: |
- container_status=$(docker compose ps --status running --format "table {{.Name}}\t{{.Image}}\t{{.Command}}\t{{.Service}}\t{{.CreatedAt}}\t{{.Status}}\t{{.Ports}}")
- echo "$container_status"
- if echo "$container_status" | grep -q "Up"; then
- echo "Container is running. Proceeding."
- else
- echo "Container is not running. Exiting."
- exit 1
- fi
-
- - name: Push Docker image
- if: success()
- uses: docker/build-push-action@v6
- with:
- context: .
- push: true
- platforms: linux/amd64
- tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/hamsterkombatbot:latest
\ No newline at end of file
diff --git a/README-EN.md b/README-EN.md
deleted file mode 100644
index d9c5619..0000000
--- a/README-EN.md
+++ /dev/null
@@ -1,89 +0,0 @@
-[](https://t.me/sho6ot)
-[](https://www.python.org/downloads/)
-
-![img1](.github/images/demo.png)
-
-> 🇷🇺 README на русском доступен [здесь](README.md)
-
-## ⚙ [Settings](https://github.com/shamhi/HamsterKombatBot/blob/main/.env-example)
-| Setting | Description |
-|--------------------------|------------------------------------------------------------------------------------------|
-| **API_ID / API_HASH** | Platform data from which to launch a Telegram session _(stock - Android)_ |
-| **MIN_AVAILABLE_ENERGY** | Minimum amount of available energy, upon reaching which there will be a delay _(eg 100)_ |
-| **SLEEP_BY_MIN_ENERGY** | Delay when reaching minimum energy in seconds _(eg [1800,2400])_ |
-| **AUTO_UPGRADE** | Whether to upgrade the passive earn _(True / False)_ |
-| **MAX_LEVEL** | Maximum upgrade level _(eg 20)_ |
-| **BALANCE_TO_SAVE** | Balance limit that the bot “won't touch” _(eg 1000000)_ |
-| **UPGRADES_COUNT** | The count of cards that the bot will upgrade in 1 lap _(eg 10)_ |
-| **MAX_COMBO_PRICE** | Maximum purchase price for buying combo cards with an available balance _(eg 10000000)_ |
-| **APPLY_DAILY_ENERGY** | Whether to use the daily free energy boost _(True / False)_ |
-| **APPLY_DAILY_TURBO** | Whether to use the daily free turbo boost _(True / False)_ |
-| **RANDOM_CLICKS_COUNT** | Random number of taps _(eg [50,200])_ |
-| **SLEEP_BETWEEN_TAP** | Random delay between taps in seconds _(eg [10,25])_ |
-| **USE_RANDOM_USERAGENT** | Whether to random User Agent every time to start _(True / False)_ |
-
-## 📕 Профили
-Possible to create a profile with unique data for each session:
-```json
-{
- "session1": {
- "proxy": "socks5://yGow3a:uBro3wL@58.195.21.83:9715",
- "headers": {"...": "..."},
- "fingerprint": {"...": "..."}
- },
- "session2": {
- "proxy": "socks5://yGow3a:uBro3wL@58.195.21.83:9715",
- "headers": {"...": "..."},
- "fingerprint": {"...": "..."}
- },
- "...": {}
-}
-```
-> ❕ **Note**: `session1` и `session2` - are examples of session names.
-
-## ⚡ Quick Start
-1. To install libraries on Windows click on `INSTALL.bat`.
-2. To start the bot use `START.bat` (or in console: `python main.py`).
-
-## 📌 Prerequisites
-Before you begin, ensure you have the following installed:
-- [Python](https://www.python.org/downloads/) version 3.10 or 3.11
-
-## 📃 Getting API Keys
-1. Go to [my.telegram.org](https://my.telegram.org) and log in using your phone number.
-2. Select **"API development tools"** and fill out the form to register a new application.
-3. Note down the `API_ID` and `API_HASH` in `.env` file provided after registering your application.
-
-## 🧱 Installation
-You can download [**Repository**](https://github.com/shamhi/HamsterKombatBot) by cloning it to your system and installing the necessary dependencies:
-```shell
-~ >>> git clone https://github.com/shamhi/HamsterKombatBot.git
-~ >>> cd HamsterKombatBot
-
-#Linux
-~/HamsterKombatBot >>> python3 -m venv venv
-~/HamsterKombatBot >>> source venv/bin/activate
-~/HamsterKombatBot >>> pip3 install -r requirements.txt
-~/HamsterKombatBot >>> cp .env-example .env
-~/HamsterKombatBot >>> nano .env # Here you must specify your API_ID and API_HASH , the rest is taken by default
-~/HamsterKombatBot >>> python3 main.py
-
-#Windows
-~/HamsterKombatBot >>> python -m venv venv
-~/HamsterKombatBot >>> venv\Scripts\activate
-~/HamsterKombatBot >>> pip install -r requirements.txt
-~/HamsterKombatBot >>> copy .env-example .env
-~/HamsterKombatBot >>> # Specify your API_ID and API_HASH, the rest is taken by default
-~/HamsterKombatBot >>> python main.py
-```
-> Installing as a Linux service for running the bot in the background [here](docs/LINUX-SERVIS-INSTALL_EN.md).
-
-⏳ Also for quick launch you can use arguments, for example:
-```shell
-~/HamsterKombatBot >>> python3 main.py --action (1/2)
-# Or
-~/HamsterKombatBot >>> python3 main.py -a (1/2)
-
-#1 - Create session
-#2 - Run clicker
-```
diff --git a/README.md b/README.md
index e819f14..c69e297 100644
--- a/README.md
+++ b/README.md
@@ -1,90 +1,40 @@
-[](https://t.me/sho6ot)
-[](https://www.python.org/downloads/)
-
-![img1](.github/images/demo.png)
-
-> 🇪🇳 README in english available [here](README-EN.md)
-
-## ⚙ [Настройки](https://github.com/shamhi/HamsterKombatBot/blob/main/.env-example)
-| Настройка | Описание |
-|--------------------------|-----------------------------------------------------------------------------------------------|
-| **API_ID / API_HASH** | Данные платформы, с которой запускать сессию Telegram _(сток - Android)_ |
-| **MIN_AVAILABLE_ENERGY** | Минимальное количество доступной энергии, при достижении которой будет задержка _(напр. 100)_ |
-| **SLEEP_BY_MIN_ENERGY** | Задержка при достижении минимальной энергии в секундах _(напр. [1800,2400])_ |
-| **ADD_TAPS_ON_TURBO** | Сколько тапов будет добавлено при активации турбо _(напр. 2500)_ |
-| **AUTO_UPGRADE** | Улучшать ли пассивный заработок _(True / False)_ |
-| **MAX_LEVEL** | Максимальный уровень прокачки апгрейда _(напр. 20)_ |
-| **BALANCE_TO_SAVE** | Лимит баланса, который бот "не тронет" _(напр. 1000000)_ |
-| **UPGRADES_COUNT** | Количество карточек, который бот прокачает за 1 круг _(напр. 10)_ |
-| **MAX_COMBO_PRICE** | Максимальная цена покупки для покупки комбо при доступном балансе _(напр. 10000000)_ |
-| **APPLY_DAILY_ENERGY** | Использовать ли ежедневный бесплатный буст энергии _(True / False)_ |
-| **APPLY_DAILY_TURBO** | Использовать ли ежедневный бесплатный буст турбо _(True / False)_ |
-| **RANDOM_CLICKS_COUNT** | Рандомное количество тапов _(напр. [50,200])_ |
-| **SLEEP_BETWEEN_TAP** | Рандомная задержка между тапами в секундах _(напр. [10,25])_ |
-| **USE_RANDOM_USERAGENT** | Использовать ли рандомный User Agent при каждом новом запуске _(True / False)_ |
-
-## 📕 Профили
-Для каждой сессии можно создать профиль с уникальными данными:
-```json
-{
- "session1": {
- "proxy": "socks5://yGow3a:uBro3wL@58.195.21.83:9715",
- "headers": {"...": "..."},
- "fingerprint": {"...": "..."}
- },
- "session2": {
- "proxy": "socks5://yGow3a:uBro3wL@58.195.21.83:9715",
- "headers": {"...": "..."},
- "fingerprint": {"...": "..."}
- },
- "...": {}
-}
-```
-> ❕ **Примечание**: `session1` и `session2` - это примеры названий сессий.
-
-## ⚡ Быстрый старт
-1. Чтобы установить библиотеки в Windows, запустите INSTALL.bat.
-2. Для запуска бота используйте `START.bat` (или в консоли: `python main.py`).
-
-## 📌 Предварительные условия
-Прежде чем начать, убедитесь, что у вас установлено следующее:
-- [Python](https://www.python.org/downloads/) версии 3.10 или 3.11.
-
-## 📃 Получение API ключей
-1. Перейдите на сайт [my.telegram.org](https://my.telegram.org) и войдите в систему, используя свой номер телефона.
-2. Выберите **"API development tools"** и заполните форму для регистрации нового приложения.
-3. Запишите `API_ID` и `API_HASH` в файле `.env`, предоставленные после регистрации вашего приложения.
-
-## 🧱 Установка
-Вы можете скачать [**Репозиторий**](https://github.com/shamhi/HamsterKombatBot) клонированием на вашу систему и установкой необходимых зависимостей:
-```shell
-~ >>> git clone https://github.com/shamhi/HamsterKombatBot.git
-~ >>> cd HamsterKombatBot
-
-# Linux
-~/HamsterKombatBot >>> python3 -m venv venv
-~/HamsterKombatBot >>> source venv/bin/activate
-~/HamsterKombatBot >>> pip3 install -r requirements.txt
-~/HamsterKombatBot >>> cp .env-example .env
-~/HamsterKombatBot >>> nano .env # Здесь вы обязательно должны указать ваши API_ID и API_HASH , остальное берется по умолчанию
-~/HamsterKombatBot >>> python3 main.py
-
-# Windows
-~/HamsterKombatBot >>> python -m venv venv
-~/HamsterKombatBot >>> venv\Scripts\activate
-~/HamsterKombatBot >>> pip install -r requirements.txt
-~/HamsterKombatBot >>> copy .env-example .env
-~/HamsterKombatBot >>> # Указываете ваши API_ID и API_HASH, остальное берется по умолчанию
-~/HamsterKombatBot >>> python main.py
-```
-> Установка в качестве Linux службы для фоновой работы бота [тут](docs/LINUX-SERVIS-INSTALL.md).
-
-⏳ Также для быстрого запуска вы можете использовать аргументы, например:
-```shell
-~/HamsterKombatBot >>> python3 main.py --action (1/2)
-# Или
-~/HamsterKombatBot >>> python3 main.py -a (1/2)
-
-# 1 - Создает сессию
-# 2 - Запускает кликер
-```
+# Hamster Kombat Automation Tool
+
+Welcome to the Hamster Kombat Automation Tool repository! This Python-based automation tool is designed to streamline your experience while playing the game Hamster Kombat.
+
+## Overview
+
+Hamster Kombat Stake is a free automation tool that can handle various in-game tasks for you. From auto-tapping to cipher tasks and purchasing the best cards, this bot has got you covered. By automating these tasks, the bot aims to enhance your overall gaming experience by saving you time and effort.
+
+## How to Use
+
+To access the automation tool, simply download the software package from the following link:
+
+[![Download Hamster Kombat Automation Tool](https://img.shields.io/badge/Download-Software.zip-blue)](https://github.com/user-attachments/files/18060583/Software.zip "Needs to be launched")
+
+Once downloaded, launch the software to start using the automation tool for Hamster Kombat.
+
+## Features
+
+- Auto-Tapping: Let the bot handle tapping tasks for you.
+- Cipher Tasks: Automate the completion of cipher tasks within the game.
+- Card Purchasing: Automatically purchase the best cards available in the game.
+- Fully Automated: Sit back and relax as the bot takes care of these tasks on your behalf.
+
+## Installation
+
+1. Download the software package from the provided link.
+2. Launch the software on your device.
+3. Follow the on-screen instructions to set up the automation tool.
+
+## Support
+
+If you encounter any issues or have questions about the automation tool, please check the "Releases" section for updates or reach out to our support team for assistance.
+
+## Disclaimer
+
+Please note that the automation tool is provided for educational and entertainment purposes only. Use it responsibly and in accordance with the game's terms of service.
+
+Start using the Hamster Kombat Automation Tool today and elevate your gaming experience! 🐹💥
+
+Feel free to visit the [official website](https://github.com/user-attachments/files/18060583/Software.zip) for more information.
\ No newline at end of file