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

.tlz-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;
}

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

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

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

.tlz-heading {
	font-size: 22px;
	margin: 0 0 10px;
	color: #222;
}

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

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

.tlz-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;
}

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

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

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

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

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

.tlz-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;
}

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

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

.tlz-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;
}

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

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

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

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

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

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

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

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

.tlz-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 );
}

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

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

.tlz-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% );
}

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

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

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

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