.zkp-wrapper {
	max-width: 100%;
	margin: 20px 0;
}

.zkp-kids-help {
	background: #fff8e1;
	border: 1px solid #ffe69c;
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	color: #7a5b00;
	position: relative;
	overflow: hidden;
}

.zkp-kids-help-icon {
	margin-right: 6px;
}

.zkp-kids-help-anim {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #f5a623;
	margin-left: 8px;
	vertical-align: middle;
	animation: zkp-pulse 1.4s ease-in-out infinite;
}

@keyframes zkp-pulse {
	0%, 100% { transform: scale( 1 ); opacity: 0.7; }
	50% { transform: scale( 1.6 ); opacity: 0.2; }
}

.zkp-stars {
	color: var( --zkp-accent, #f5a623 );
	letter-spacing: 1px;
	font-size: 16px;
	margin-bottom: 10px;
}

.zkp-meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.zkp-counter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #eef6ff;
	border: 1px solid #cfe3fb;
	border-radius: 20px;
	padding: 6px 16px;
	font-weight: 600;
	color: #1e88e5;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zkp-counter.zkp-counter-complete {
	background: #edfaef;
	border-color: #b7e4bd;
	color: #1e5b26;
}

.zkp-reset-btn {
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid #ccc;
	background: #fff;
	color: #555;
	font-weight: 600;
	cursor: pointer;
	font-size: 13px;
}

.zkp-reset-btn:hover {
	background: #f5f5f5;
	color: #222;
}

.zkp-hint-btn {
	padding: 8px 16px;
	border: 1px solid #f5a623;
	background: #fff8e1;
	color: #8a6100;
	border-radius: 20px;
	font-weight: 600;
	cursor: pointer;
}

.zkp-hint-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.zkp-word-export-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid #cfe3fb;
	background: #eef6ff;
	color: #1e88e5;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
}

.zkp-word-export-btn:hover {
	background: #dcedfd;
	color: #135e96;
}

.zkp-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.zkp-wordlist-links .zkp-layout,
.zkp-wordlist-rechts .zkp-layout {
	flex-wrap: nowrap;
}

.zkp-image-col {
	flex: 1 1 auto;
	min-width: 0;
}

.zkp-wordlist-col {
	flex: 0 0 200px;
}

.zkp-zoom-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.zkp-zoom-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

.zkp-zoom-btn:hover {
	background: #f0f0f0;
}

.zkp-zoom-slider {
	width: 140px;
}

.zkp-zoom-value {
	font-size: 13px;
	color: #555;
	min-width: 42px;
}

.zkp-zoom-viewport {
	max-width: 100%;
	overflow: auto;
	touch-action: none;
}

.zkp-zoom-outer {
	display: inline-block;
	transform-origin: top left;
	transition: transform 0.12s ease;
}

.zkp-image-stage {
	position: relative;
	display: inline-block;
}

.zkp-image {
	display: block;
	max-width: 100%;
	-webkit-user-select: none;
	user-select: none;
}

.zkp-marker-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.zkp-found-marker {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba( 67, 160, 71, 0.35 );
	border: 3px solid #43a047;
	transform: translate( -50%, -50% );
	box-shadow: 0 0 0 3px rgba( 255, 255, 255, 0.6 );
}

.zkp-hint-marker {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid #f5a623;
	transform: translate( -50%, -50% );
	animation: zkp-pulse 1s ease-in-out infinite;
}

.zkp-miss-marker {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba( 229, 57, 53, 0.4 );
	transform: translate( -50%, -50% );
}

.zkp-answer-marker {
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba( 30, 136, 229, 0.3 );
	border: 2px solid #1e88e5;
	transform: translate( -50%, -50% );
}

.zkp-wordlist {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.zkp-wordlist-item {
	padding: 6px 12px;
	background: #f7f9fc;
	border: 1px solid #e0e6ef;
	border-radius: 4px;
	margin-bottom: 4px;
	font-size: 14px;
	color: #333;
}

.zkp-wordlist-item.zkp-word-done {
	text-decoration: line-through;
	color: #999;
	background: #f0f0f0;
	border-left: 3px solid var( --zkp-accent, #43a047 );
}

.zkp-feedback {
	margin-top: 12px;
	font-size: 14px;
	min-height: 20px;
}

.zkp-feedback-success {
	color: #1e5b26;
}

.zkp-feedback-miss {
	color: #999;
}

.zkp-answer-key .zkp-image {
	cursor: default;
}
