/*
body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

	background: #0f1117;
	font-family: Arial, sans-serif;
}
*/

/* Öffnen Button */
.open-btn {
	background: #7c5cff;
	color: white;
	border: none;
	padding: 14px 24px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.2s;
	position: absolute;
	left: 2%;
	top: 25%;
}

.open-btn:hover {
	background: #6847ff;
	transform: translateY(-2px);
}

/* Hintergrund */
.newpopup-overlay {
	position: fixed;
	inset: 0;

	z-index: 99999;

	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);

	display: flex;
	justify-content: center;
	align-items: center;

	opacity: 0;
	pointer-events: none;

	transition: 0.25s;
}

.newpopup-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

/* Popup */
.newpopup {
	width: 720px;

	background: #1b1f2a;
	border: 1px solid #2c3243;

	border-radius: 10px;

	padding: 28px;

	box-shadow:
		0 0 30px rgba(0, 0, 0, 0.5),
		0 0 25px rgba(124, 92, 255, 0.5),
		0 0 60px rgba(124, 92, 255, 0.4),
		0 0 100px rgba(124, 92, 255, 0.3);

	text-align: center;

	transform: scale(0.85);
	transition: 0.25s;
}

.newpopup-overlay.show .newpopup {
	transform: scale(1);
}

.newpopup h2 {
	margin-top: 0;
	color: white;
	font-size: 24px;
}

.newpopup p {
	color: #b6bdd1;
	font-size: 16px;
	line-height: 1.5;
	margin: 18px 0 28px;
	/* text-align: left; */
}

.newpopup button {
	background: linear-gradient(135deg, #7c5cff, #5b8cff);

	color: white;
	border: none;

	padding: 12px 24px;
	border-radius: 6px;

	font-size: 16px;
	cursor: pointer;

	transition: 0.2s;
}

.newpopup button:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.newpopup-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.later-btn {
	background: #2d3345 !important;
	border: 1px solid #4b556f;
}

.later-btn:hover {
	background: #3a425a !important;
}
