/* =========================================================
SILICONMENTORAI POPUP ALERT
ULTRA PREMIUM 3D AI GLOW UI
========================================================= */
.dr1060popupalerts1 {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
	z-index: 9999;
}

/* ACTIVE STATE */
.dr1060popupalerts1.active {
	opacity: 1;
	visibility: visible;
}

/* BACKDROP */
.popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 20, .75);
	backdrop-filter: blur(10px);
}

/* =========================================================
MAIN CARD (3D GLASS CORE)
========================================================= */
.popup-card {
	position: relative;
	width: min(520px, 92%);
	padding: 36px 28px;
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .08),
		rgba(255, 255, 255, .03));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 40px 120px rgba(0, 0, 0, .6), 0 0 80px
		rgba(0, 229, 255, .12);
	transform: translateY(40px) scale(.95);
	opacity: 0;
	transition: all .6s cubic-bezier(.2, .9, .2, 1);
}

/* ACTIVE ANIMATION */
.dr1060popupalerts1.active .popup-card {
	transform: translateY(0) scale(1);
	opacity: 1;
}

/* AI GLOW LAYER */
.popup-glow {
	position: absolute;
	inset: -2px;
	border-radius: 24px;
	background: radial-gradient(circle at top left, rgba(0, 229, 255, .25),
		transparent 60%),
		radial-gradient(circle at bottom right, rgba(124, 77, 255, .20),
		transparent 60%);
	filter: blur(25px);
	z-index: -1;
}

/* =========================================================
CLOSE BUTTON
========================================================= */
.popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: all .25s ease;
}

.popup-close:hover {
	background: rgba(0, 229, 255, .15);
	transform: rotate(90deg);
}

/* =========================================================
CONTENT
========================================================= */
.popup-content {
	text-align: center;
}

.popup-badge {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: rgba(0, 229, 255, .08);
	border: 1px solid rgba(0, 229, 255, .25);
	color: #7df9ff;
	margin-bottom: 16px;
}

.popup-content h2 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #00e5ff, #7c4dff, #00ffb2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.popup-content p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 22px;
}

/* =========================================================
CTA BUTTON
========================================================= */
.popup-cta {
	display: inline-block;
	padding: 12px 22px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	color: #001018;
	background: linear-gradient(90deg, #00e5ff, #00ffb2);
	box-shadow: 0 15px 40px rgba(0, 229, 255, .25);
	transition: all .3s ease;
}

.popup-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 60px rgba(0, 229, 255, .35);
}