.popup-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	padding: 20px;
	box-sizing: border-box;
}

.popup-banner.is-active {
	opacity: 1;
	visibility: visible;
}

.popup-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 10, 12, 0.85);
	backdrop-filter: blur(8px);
}

.popup-banner-content {
	position: relative;
	z-index: 2;
	max-width: 540px;
	width: 100%;
	background: linear-gradient(145deg, #18191c 0%, #0d0e10 100%);
	color: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
	overflow: hidden;
	padding: 32px 36px 24px;
	box-sizing: border-box;
	transform: scale(0.92);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-banner.is-active .popup-banner-content {
	transform: scale(1);
}

.popup-banner-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	width: 34px;
	height: 34px;
	background-color: rgba(255, 255, 255, 0.08);
	color: #aaaaaa;
	border: none;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.popup-banner-close svg {
	display: block;
	pointer-events: none;
}

.popup-banner-close:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.popup-banner-header {
	margin-bottom: 24px;
}

.popup-banner-brand {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #ffffff;
	text-transform: uppercase;
}

.popup-banner-tagline {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2px;
}

.popup-banner-main-title {
	font-size: 32px;
	line-height: 1.1;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 14px 0;
	letter-spacing: 1px;
}

.popup-banner-main-title span {
	display: block;
}

.popup-banner-subtitle {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 24px 0;
	line-height: 1.5;
	text-transform: uppercase;
}

.popup-banner-advantages {
	list-style: none;
	padding: 0;
	margin: 0 0 28px 0;
}

.popup-banner-advantage-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #e2e8f0;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.popup-banner-advantage-item:last-child {
	margin-bottom: 0;
}

.popup-banner-icon {
	color: #e53e3e;
	flex-shrink: 0;
}

.popup-banner-action {
	margin-bottom: 28px;
}

.popup-banner-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 24px;
	background-color: #e53e3e;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
}

.popup-banner-button:hover {
	background-color: #c53030;
	color: #ffffff;
}

.popup-banner-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.5px;
}

.popup-banner-footer-domain {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
	.popup-banner-content {
		padding: 24px 20px 18px;
	}

	.popup-banner-main-title {
		font-size: 24px;
	}

	.popup-banner-subtitle {
		font-size: 11px;
	}

	.popup-banner-advantage-item {
		font-size: 11px;
	}

	.popup-banner-footer {
		flex-direction: column;
		gap: 6px;
		align-items: flex-start;
	}
}