.binance-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.binance-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.binance-popup__content {
	position: relative;
	background: #fff;
	padding: 30px;
	max-width: 400px;
	width: 90%;
	z-index: 10;
	border-radius: 8px;
	text-align: center;
}

.binance-popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	background: none;
	font-size: 24px;
	cursor: pointer;
}

.binance-popup__title {
	margin-bottom: 10px;
	font-size: 20px;
}

.binance-popup__desc {
	margin-bottom: 20px;
	font-size: 16px;
}

.binance-popup__qr img {
	max-width: 250px;
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
}

.binance-popup__buttons a {
	display: inline-block;
	margin: 5px;
	padding: 10px 20px;
	background: #f3ba2f;
	color: #000;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
}

.binance-popup__buttons a.button--alt {
	background: #e0e0e0;
	color: #333;
}