/* Privacy Popup Styles */
#privacy-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: flex-end;
	justify-content: center;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.5);
}

#privacy-popup .popup-content {
	background-color: #374151;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	width: 100%;
	position: relative;
	animation: slideInUp 0.3s ease-out;
}

#privacy-popup .close-button {
	position: absolute;
	top: 12px;
	right: 12px;
	color: white;
	transition: all 0.2s;
	background: none;
	border: none;
	cursor: pointer;
}

#privacy-popup .close-button:hover {
	transform: scale(1.1);
}

#privacy-popup .close-button svg {
	width: 20px;
	height: 20px;
}

#privacy-popup .popup-body {
	padding: 1.5rem;
	padding-top: 3rem;
}

#privacy-popup .popup-text {
	color: white;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

#privacy-popup .privacy-link {
	color: #67a739;
	text-decoration: underline;
	transition: color 0.2s;
}

#privacy-popup .privacy-link:hover {
	color: #59C70B;
}

#privacy-popup .button-container {
	display: flex;
	justify-content: flex-end;
}

#privacy-popup .accept-button {
	background-color: #4b5563;
	color: white;
	font-weight: 500;
	padding: 8px 24px;
	border-radius: 4px;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

#privacy-popup .accept-button:hover {
	background-color: #6b7280;
	transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Responsive */
@media (max-width: 640px) {
	.max-w-lg {
		max-width: calc(100vw - 2rem);
		margin: 0 1rem 1rem 1rem;
	}
}