.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(8px);
}

.popup-content {
	background: linear-gradient(120deg, #0b1623, #22304f 60%, #162447 100%);

	border-radius: var(--border-radius);
	width: 90%;
	max-width: 500px;
	box-shadow: var(--box-shadow);
	overflow: hidden;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.popup-header {
	background: linear-gradient(135deg,
    #005cfc,
    #0496ff);
	color:#c0b7b7;
	padding: 20px;
	text-align: center;
}
.popup-header h2 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.popup-body {
	padding: 30px;
	text-align: center;
}

.popup-body p {
	margin-bottom: 20px;
	font-size: 1.1rem;
	color: #ffffff;
}

.popup-body p:first-of-type {
	font-size: 1.3rem;
	color: #ffffff;
	font-weight: 600;
}

.popup-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
   
}
.popup-buttons button {
    background-color: #0496ff;
    color: #162447;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px;
}