:root {
	--alert-primary: #6c5ce7;
	--alert-secondary: #a8a5e6;
	--alert-success: #00b894;
	--alert-danger: #d63031;
	--alert-warning: #ffa502;
	--alert-text: #f8f9fa;
	--alert-bg-dark: #0f0f1f;
	--alert-bg-darker: #1a1a2e;
}

.hidden {
	display: none !important;
}

.alert-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.alert-box {
	background: linear-gradient(135deg, var(--alert-bg-darker) 0%, var(--alert-bg-dark) 100%);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	max-width: 450px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	animation: slideIn 0.4s ease-out;
}

.alert-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	animation: bounce 0.6s ease;
}

.alert-title {
	color: var(--alert-text);
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.alert-message {
	color: var(--alert-secondary);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.alert-btn {
	background: var(--alert-primary);
	border: none;
	color: var(--alert-text);
	padding: 0.75rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
}

.alert-btn:hover {
	background: var(--alert-secondary);
	transform: scale(1.05);
	box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
}

.alert-success {
	border: 3px solid var(--alert-success);
}

.alert-success .alert-title {
	color: var(--alert-success);
}

.alert-error {
	border: 3px solid var(--alert-danger);
}

.alert-error .alert-title {
	color: var(--alert-danger);
}

.alert-info {
	border: 3px solid var(--alert-primary);
}

.alert-info .alert-title {
	color: var(--alert-primary);
}

.alert-warning {
	border: 3px solid var(--alert-warning);
}

.alert-warning .alert-title {
	color: var(--alert-warning);
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
	.alert-box {
		width: 95%;
		padding: 2rem 1.5rem;
	}

	.alert-icon {
		font-size: 3rem;
	}

	.alert-title {
		font-size: 1.5rem;
	}

	.alert-message {
		font-size: 1rem;
	}
}