/* Общие сбросы и настройки */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Gilroy';
        }

        body {
            background-color: #e0e0e0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        /* Контейнер мобильного приложения */
        .mobile-container {
            width: 100%;
            max-width: 414px;
            background-color: #ffffff;
            position: relative;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Шапка сайта */
        .header-top {
            background-color: #205583;					
			padding: 15px 0;			
			display: flex;
			justify-content: center;
			align-items: center;	
        }			
		.logo { height: 30px; }
		.logowallets { height: 40px; }
		.logowallets2 { height: 20px; }

        .header-title {
            background-color: #3172a8;
            color: #ffffff;
            text-align: center;
            padding: 16px 0;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        /* Основной контент */
        .content {
            padding: 30px 20px;
            text-align: center;
            flex-grow: 1;
        }

        .content h2 {
            font-size: 20px;
            color: #1a3a5c;
			font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        /* Кнопки кошельков */
        .wallet-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            border: 3px solid #3172a8;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 18px;
            background: #ffffff;
            cursor: pointer;
            min-height: 70px;
            transition: background 0.2s;
        }

        .wallet-btn:hover {
            transform: translateY(2px);
			box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
			transition: 0.2s;
        }
		.wallet-btn:active {
            background: #3172a8;
			transition: background 0.2s;
        }



        /* Модальное окно */
        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: #ffffff;
            width: 80%;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: popIn 0.3s ease-out;
        }

        @keyframes popIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-title {
            font-size: 18px;
            color: #1a3a5c;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .modal-logo-box {
            background-color: #4a85b5;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .input-group input {
            width: 100%;
            border: 1px solid #3172a8;
            border-radius: 25px;
            padding: 12px 18px;
            font-size: 15px;
            outline: none;
            color: #333;
        }

        .input-group input::placeholder {
            color: #b0b0b0;
        }

        .submit-btn {
            background-color: #205583;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            width: 100%;
            padding: 15px;
            font-size: 16px;
            font-weight: bold;
            margin-top: 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .submit-btn:active {
            background-color: #173d5e;
        }