.apc-card {
	max-width: 700px;
	margin: 0 auto;
	background: #ffffff;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
	font-family: inherit;
}

.apc-image-wrap {
	position: relative;
	line-height: 0;
	height: 220px;
	width: 100%;
	background-color: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.apc-image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.apc-watermark {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	opacity: 0.9;
	pointer-events: none;
}

.apc-body {
	padding: 20px;
}

.apc-prompt-title {
	font-size: 16px;
	font-weight: 700;
	color: #161629;
	margin-bottom: 10px;
	line-height: 1.4;
}

.apc-prompt-box {
	background: #fafafa;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 16px 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 18px;
	word-wrap: break-word;
	white-space: pre-wrap;
}

.apc-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.apc-btn {
	flex: 1 1 0;
	min-width: 120px;
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.apc-btn:hover {
	opacity: 0.88;
}

.apc-btn:active {
	transform: scale(0.97);
}

.apc-btn .apc-icon {
	font-size: 15px;
	line-height: 1;
}

.apc-btn-1 {
	background-color: #161629;
}

.apc-btn-2 {
	background-color: #22c55e;
}

.apc-btn-3 {
	background-color: #3b82f6;
}

/* Toast shown after copying */
.apc-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: #1a1a1a;
	color: #fff;
	padding: 10px 18px;
	border-radius: 30px;
	font-size: 13px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 99999;
}

.apc-toast.apc-toast-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Responsive: stack buttons on small screens */
@media (max-width: 480px) {
	.apc-buttons {
		flex-direction: column;
	}
	.apc-btn {
		width: 100%;
	}
	.apc-body {
		padding: 16px;
	}
	.apc-image-wrap {
		height: 180px !important;
	}
}
