#privacy-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 12px 16px;
	box-sizing: border-box;
	display: none;
	z-index: 10001;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent .consent-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}
#privacy-consent .consent-text {
	flex: 1;
	margin: 0;
}
#privacy-consent .consent-text a {
	color: #ffd700;
	text-decoration: underline;
}
#privacy-consent .consent-text a:hover {
	color: #ffed4e;
}
#privacy-consent .consent-buttons {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
#privacy-consent .consent-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.3s ease;
}
#privacy-consent .consent-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}
#privacy-consent .consent-btn.accept {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
}
#privacy-consent .consent-btn.accept:hover {
	background: white;
}
@media (max-width: 768px) {
	#privacy-consent {
		padding: 10px 12px;
	}
	#privacy-consent .consent-content {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
	#privacy-consent .consent-buttons {
		width: 100%;
		justify-content: center;
	}
	#privacy-consent .consent-btn {
		flex: 1;
		max-width: 120px;
	}
}