#privacy-consent {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 320px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	z-index: 99999;
	display: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent p {
	margin: 0 0 12px 0;
}
#privacy-consent a {
	color: #fff;
	text-decoration: underline;
}
#privacy-consent a:hover {
	text-decoration: none;
}
.consent-buttons {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.consent-buttons button {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
}
.accept-btn {
	background: rgba(255,255,255,0.9);
	color: #333;
}
.decline-btn {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 1px solid rgba(255,255,255,0.3);
}
.accept-btn:hover {
	background: white;
	transform: translateY(-1px);
}
.decline-btn:hover {
	background: rgba(255,255,255,0.3);
}
@media (max-width: 480px) {
	#privacy-consent {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}
	.consent-buttons {
		flex-direction: column;
	}
}