#privacy-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	max-width: 320px;
	background-color: #f9f9f9;
	color: #333;
	padding: 15px 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	border-radius: 8px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	z-index: 10000;
}
#privacy-popup a {
	color: #1a73e8;
	text-decoration: none;
}
#privacy-popup a:hover {
	text-decoration: underline;
}
#privacy-popup .close-btn {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	font-weight: bold;
	color: #666;
	border: none;
	background: transparent;
	font-size: 18px;
	line-height: 18px;
	padding: 0;
}
@media (max-width: 480px) {
	#privacy-popup {
		max-width: 90vw;
		padding: 12px 16px;
		font-size: 13px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	#privacy-popup {
		max-width: 360px;
		font-size: 14px;
	}
}