.lpp-popup {
	position: absolute;
	z-index: 999999;
	width: var(--lpp-width, 320px);
	background: var(--lpp-bg-color, #ffffff);
	color: var(--lpp-text-color, #1a1a1a);
	border: 1px solid var(--lpp-border-color, #e0e0e0);
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	pointer-events: none;
}

.lpp-popup.lpp-anim-fade {
	animation: lpp-fade-in 0.15s ease-out;
}

@keyframes lpp-fade-in {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lpp-loading {
	padding: 16px;
	text-align: center;
	color: #999;
}

.lpp-card {
	display: flex;
	flex-direction: column;
}

.lpp-image {
	width: 100%;
	height: var(--lpp-max-height, 200px);
	overflow: hidden;
	background: #f2f2f2;
}

.lpp-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lpp-content {
	padding: 10px 12px;
}

.lpp-title {
	font-weight: 600;
	margin-bottom: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.lpp-description {
	color: #666;
	margin-bottom: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.lpp-sitename {
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
