.info-paid-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 10px;
  background: #fff7e6;
  color: #d46b08;
  border: 1px solid #ffd591;
  font-size: 12px;
  line-height: 18px;
  vertical-align: middle;
}

.info-paid-link {
  color: #d46b08;
}

.info-paid-link:hover {
  color: #b35a00;
}

.info-badge-free {
  background: #f5f5f5;
  color: #333;
  border-color: #e5e5e5;
}

.info-badge-subscribed {
  background: #f6ffed;
  color: #389e0d;
  border-color: #b7eb8f;
}

.info-link-free {
  color: inherit;
}

.info-link-free:hover {
  color: inherit;
}

.info-link-subscribed {
  color: #389e0d;
}

.info-link-subscribed:hover {
  color: #237804;
}

.comment-emoji-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  vertical-align: middle;
}

.comment-emoji-inline img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.comment-reply-prefix {
  color: #1d39c4;
  font-weight: 600;
  margin-right: 4px;
}

.comment-emoji-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.comment-emoji-wrap {
  position: relative;
}

.comment-emoji-button {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,.92);
  background: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

.comment-emoji-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  display: none;
  width: 252px;
  max-height: 252px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(226,232,240,.92);
  box-shadow: 0 18px 36px rgba(15,23,42,.12);
}

.comment-emoji-panel.active {
  display: block;
}

.comment-emoji-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.comment-emoji-recent {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(226,232,240,.92);
}

.comment-emoji-recent.hidden {
  display: none;
}

.comment-emoji-recent-title {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 700;
}

.comment-emoji-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.comment-emoji-clear-btn {
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.comment-emoji-clear-btn:hover {
  color: #475569;
}

.comment-emoji-btn {
  min-height: 34px;
  border: 0;
  border-radius: 12px;
  background: rgba(248,250,252,.96);
  padding: 6px 4px;
  cursor: pointer;
}

.comment-emoji-btn img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  pointer-events: none;
}

.comment-emoji-toolbar-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.comment-emoji-quickbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.comment-emoji-quickbar.hidden {
  display: none;
}

.comment-emoji-quickbar-title {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.comment-emoji-quickbar-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* tpl_info moved inline styles */
.info-confirm-mask {
		position: fixed;
		inset: 0;
		display: none;
		align-items: center;
		justify-content: center;
		background: rgba(15, 23, 42, 0.56);
		z-index: 9999;
		padding: 20px;
	}

	.info-confirm-mask.show {
		display: flex;
	}

	.info-confirm-dialog {
		width: min(460px, 100%);
		background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
		border-radius: 18px;
		box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
		overflow: hidden;
		opacity: 0;
		transform: translateY(14px) scale(0.98);
		transition: opacity 0.22s ease, transform 0.22s ease;
	}

	.info-confirm-mask.show .info-confirm-dialog {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	.info-confirm-header {
		padding: 16px 18px 12px;
		background: linear-gradient(135deg, #4a9b6e 0%, #5bb27e 100%);
		color: #fff;
	}

	.info-confirm-title {
		margin: 0;
		font-size: 18px;
		font-weight: 700;
	}

	.info-confirm-body {
		padding: 18px;
		color: #334155;
		font-size: 14px;
		line-height: 1.8;
		white-space: pre-line;
	}

	.info-confirm-highlights {
		display: none;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		padding: 0 18px 18px;
	}

	.info-confirm-highlights.show {
		display: grid;
	}

	.info-confirm-highlight {
		padding: 12px 12px 10px;
		border-radius: 14px;
		background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
		border: 1px solid rgba(148, 163, 184, 0.18);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
	}

	.info-confirm-highlight-head {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.info-confirm-highlight-icon {
		width: 28px;
		height: 28px;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
	}

	.info-confirm-highlight.cost {
		background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
		border-color: rgba(249, 115, 22, 0.18);
	}

	.info-confirm-highlight.cost .info-confirm-highlight-icon {
		background: rgba(249, 115, 22, 0.14);
		color: #c2410c;
	}

	.info-confirm-highlight.balance {
		background: linear-gradient(180deg, #ecfdf5 0%, #dcfce7 100%);
		border-color: rgba(34, 197, 94, 0.18);
	}

	.info-confirm-highlight.balance .info-confirm-highlight-icon {
		background: rgba(34, 197, 94, 0.14);
		color: #15803d;
	}

	.info-confirm-highlight.skip {
		background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
		border-color: rgba(59, 130, 246, 0.18);
	}

	.info-confirm-highlight.skip .info-confirm-highlight-icon {
		background: rgba(59, 130, 246, 0.14);
		color: #1d4ed8;
	}

	.info-confirm-highlight-label {
		display: block;
		font-size: 12px;
		font-weight: 700;
		color: #64748b;
	}

	.info-confirm-highlight-value {
		display: block;
		margin-top: 6px;
		font-size: 18px;
		font-weight: 800;
		color: #0f172a;
		line-height: 1.2;
		transform-origin: left center;
	}

	.info-confirm-highlights.show .info-confirm-highlight-value.is-emphasis {
		animation: infoMetricPulse 0.52s ease-out;
	}

	@keyframes infoMetricPulse {
		0% { transform: scale(0.92); opacity: 0.45; }
		55% { transform: scale(1.08); opacity: 1; }
		100% { transform: scale(1); opacity: 1; }
	}

	.info-confirm-actions {
		display: flex;
		gap: 10px;
		padding: 0 18px 18px;
	}

	.info-confirm-btn {
		flex: 1;
		border: 0;
		border-radius: 12px;
		padding: 12px 14px;
		font-size: 14px;
		font-weight: 700;
		cursor: pointer;
		transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
	}

	.info-confirm-btn i {
		margin-right: 6px;
	}

	.info-confirm-btn:disabled,
	.info-confirm-btn.is-disabled {
		opacity: 0.68;
		cursor: not-allowed;
		box-shadow: none;
		transform: none;
	}

	.download-txt-trigger.is-loading,
	.download-txt-trigger.is-disabled {
		opacity: 0.72;
		pointer-events: none;
	}

	.download-txt-trigger i {
		margin-right: 4px;
	}

	.novel_info_title > .flex > .l_btn,
	.novel_info_title > .flex > .l_btn_0 {
		flex: 0 0 108px;
		min-width: 0;
		box-sizing: border-box;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.info-confirm-btn.cancel {
		background: #edf2f7;
		color: #475569;
	}

	.info-confirm-btn.secondary {
		background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
		color: #1d4ed8;
		box-shadow: 0 8px 18px rgba(59, 130, 246, 0.12);
	}

	.info-confirm-btn.confirm {
		background: linear-gradient(135deg, #4a9b6e 0%, #3f8a60 100%);
		color: #fff;
		box-shadow: 0 10px 20px rgba(74, 155, 110, 0.18);
	}

	.info-download-status-strip {
		position: fixed;
		left: 50%;
		bottom: 28px;
		transform: translateX(-50%) translateY(18px);
		min-width: min(520px, calc(100vw - 24px));
		max-width: min(640px, calc(100vw - 24px));
		padding: 14px 18px;
		border-radius: 16px;
		background: rgba(15, 23, 42, 0.92);
		color: #fff;
		box-shadow: 0 22px 50px rgba(15, 23, 42, 0.32);
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease;
		z-index: 9998;
	}

	.info-download-status-inner {
		display: flex;
		align-items: flex-start;
		gap: 14px;
	}

	.info-download-status-main {
		flex: 1;
		min-width: 0;
	}

	.info-download-status-strip.show {
		opacity: 1;
		pointer-events: auto;
	}

	.info-download-status-strip.show.info {
		animation: infoStripSlideIn 0.28s ease-out;
		transform: translateX(-50%) translateY(0);
	}

	.info-download-status-strip.show.success {
		animation: successStripLiftIn 0.32s ease-out;
		transform: translateX(-50%) translateY(-4px);
	}

	.info-download-status-strip.show.premium {
		animation: successStripLiftIn 0.32s ease-out;
		transform: translateX(-50%) translateY(-4px);
	}

	.info-download-status-strip.show.warning {
		animation: warningStripShakeIn 0.34s ease-out;
		transform: translateX(-50%) translateY(0);
	}

	@keyframes infoStripSlideIn {
		0% { opacity: 0; transform: translateX(-50%) translateY(22px); }
		100% { opacity: 1; transform: translateX(-50%) translateY(0); }
	}

	@keyframes successStripLiftIn {
		0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
		100% { opacity: 1; transform: translateX(-50%) translateY(-4px); }
	}

	@keyframes warningStripShakeIn {
		0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
		35% { opacity: 1; transform: translateX(calc(-50% - 4px)) translateY(0); }
		65% { transform: translateX(calc(-50% + 4px)) translateY(0); }
		100% { opacity: 1; transform: translateX(-50%) translateY(0); }
	}

	.info-download-status-strip.success {
		background: linear-gradient(135deg, rgba(22, 163, 74, 0.96) 0%, rgba(21, 128, 61, 0.96) 100%);
	}

	.info-download-status-strip.premium {
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.96) 0%, rgba(91, 33, 182, 0.96) 100%);
	}

	.info-download-status-strip.warning {
		background: linear-gradient(135deg, rgba(217, 119, 6, 0.96) 0%, rgba(180, 83, 9, 0.96) 100%);
	}

	.info-download-status-strip.info {
		background: linear-gradient(135deg, rgba(30, 64, 175, 0.96) 0%, rgba(29, 78, 216, 0.96) 100%);
	}

	.info-download-status-title {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 15px;
		font-weight: 800;
	}

	.info-download-status-title-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		border-radius: 999px;
		background: rgba(255,255,255,0.16);
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
		transform-origin: center;
	}

	.info-download-status-strip.info .info-download-status-title-icon {
		animation: infoStatusSpin 1.4s linear infinite;
	}

	.info-download-status-strip.success .info-download-status-title-icon {
		animation: successStatusPop 0.42s ease-out;
	}

	.info-download-status-strip.premium .info-download-status-title-icon {
		animation: successStatusPop 0.42s ease-out;
	}

	.info-download-status-strip.warning .info-download-status-title-icon {
		animation: warningStatusPulse 0.72s ease-in-out 2;
	}

	@keyframes infoStatusSpin {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}

	@keyframes successStatusPop {
		0% { transform: scale(0.72); opacity: 0.4; }
		60% { transform: scale(1.12); opacity: 1; }
		100% { transform: scale(1); opacity: 1; }
	}

	@keyframes warningStatusPulse {
		0%, 100% { transform: scale(1); opacity: 1; }
		50% { transform: scale(1.1); opacity: 0.84; }
	}

	.info-download-status-text {
		margin-top: 6px;
		font-size: 13px;
		line-height: 1.75;
		color: rgba(255,255,255,0.92);
		white-space: pre-line;
	}

	.info-download-status-extra {
		display: none;
		margin-top: 10px;
	}

	.info-download-status-extra.show {
		display: block;
	}

	.info-download-status-toggle {
		border: 0;
		background: rgba(255,255,255,0.14);
		color: #fff;
		padding: 8px 12px;
		border-radius: 12px;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.6;
		cursor: pointer;
		text-align: left;
		max-width: 100%;
	}

	.info-download-status-toggle i {
		margin-right: 6px;
	}

	.info-download-status-toggle:hover {
		background: rgba(255,255,255,0.2);
	}

	.info-download-status-detail {
		display: none;
		margin-top: 8px;
		padding: 10px 12px;
		border-radius: 12px;
		background: rgba(255,255,255,0.12);
		font-size: 12px;
		line-height: 1.75;
		color: rgba(255,255,255,0.94);
		white-space: pre-line;
	}

	.info-download-status-detail.show {
		display: block;
	}

	.info-download-status-detail-head {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		margin-bottom: 8px;
	}

	.info-download-status-detail-title {
		font-size: 12px;
		font-weight: 700;
		color: rgba(255,255,255,0.96);
	}

	.info-download-status-detail-copy {
		border: 0;
		background: rgba(255,255,255,0.14);
		color: #fff;
		padding: 6px 10px;
		border-radius: 10px;
		font-size: 12px;
		font-weight: 700;
		cursor: pointer;
	}

	.info-download-status-detail-copy i {
		margin-right: 6px;
	}

	.info-download-status-detail-actions {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-wrap: wrap;
	}

	.info-download-status-detail-copy:hover {
		background: rgba(255,255,255,0.22);
	}

	.info-download-status-detail-body {
		white-space: pre-line;
	}

	.info-download-status-close {
		border: 0;
		background: rgba(255,255,255,0.14);
		color: #fff;
		width: 30px;
		height: 30px;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		flex: 0 0 auto;
		transition: background .18s ease, transform .18s ease;
	}

	.info-download-status-close:hover {
		background: rgba(255,255,255,0.22);
		transform: scale(1.04);
	}

	.info-rating-box {
		margin-top: 14px;
		padding: 14px 16px;
		border-radius: 16px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
		border: 1px solid #5bb27e;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
	}

	.info-rating-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}

	.info-rating-title {
		font-size: 14px;
		font-weight: 800;
		color: #5bb27e;
	}

	.info-rating-summary {
		font-size: 13px;
		color: #5bb27e;
	}

	.info-rating-stars {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-wrap: wrap;
	}

	.info-rating-star {
		border: 0;
		background: rgba(255,255,255,0.86);
		color: #d6d3d1;
		width: 38px;
		height: 38px;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		cursor: pointer;
		transition: transform .16s ease, color .16s ease, box-shadow .16s ease, background .16s ease;
		box-shadow: 0 8px 18px rgba(217, 119, 6, 0.12);
	}

	.info-rating-star:hover,
	.info-rating-star.is-active {
		color: #f59e0b;
		background: #fff;
		transform: translateY(-1px) scale(1.04);
	}

	.info-rating-star.is-disabled {
		opacity: .6;
		cursor: not-allowed;
		transform: none;
	}

	.info-rating-star.is-rated {
		color: #f59e0b;
		background: #fff;
	}

			.info-rating-meta {
				margin-top: 10px;
				font-size: 12px;
				color: #9a3412;
			}

			.chapter-empty {
				padding: 18px 12px;
				text-align: center;
				color: #6b7280;
				font-size: 14px;
				line-height: 1.8;
				background: #f9fafb;
				border: 1px dashed #d1d5db;
				border-radius: 12px;
			}

			.chapter_list ul li.chapter-empty {
				width: 100% !important;
				flex: 0 0 100%;
				height: auto;
				min-height: 88px;
				overflow: visible;
				white-space: normal;
				box-sizing: border-box;
			}

	@media (max-width: 700px) {
				.info-confirm-highlights {
					grid-template-columns: 1fr;
		}

		.info-confirm-actions {
			flex-direction: column;
		}

		.info-download-status-strip {
			bottom: 16px;
			padding: 12px 14px;
			border-radius: 14px;
		}

		.info-rating-box {
			padding: 12px 14px;
		}
	}

	.comments {
		margin: 16px auto 0;
		padding: 0 0 4px;
	}

	.comments-panel {
		width: min(92%, 880px);
		margin: 0 auto;
		padding: 18px;
		border-radius: 22px;
		background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
		border: 1px solid rgba(91, 178, 126, 0.18);
		box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
	}

	.comments-head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 14px;
		margin-bottom: 14px;
	}

	.comments-eyebrow {
		font-size: 12px;
		font-weight: 800;
		letter-spacing: .12em;
		color: #5bb27e;
	}

	.comments-title {
		margin: 4px 0 0;
		font-size: 20px;
		font-weight: 800;
		color: #1f2937;
		line-height: 1.35;
	}

	.comments-head-note {
		color: #64748b;
		font-size: 12px;
		line-height: 1.7;
		text-align: right;
	}

	.comments-pagination {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		flex-wrap: wrap;
		margin: 0 0 14px;
		padding: 12px 14px;
		border-radius: 18px;
		background: linear-gradient(135deg, rgba(91, 178, 126, 0.11) 0%, rgba(74, 155, 110, 0.05) 100%);
		border: 1px solid rgba(91, 178, 126, 0.15);
	}

	.comments-pagination-meta {
		font-size: 12px;
		font-weight: 700;
		color: #3f8a60;
	}

	.comments-pagination-actions {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-wrap: wrap;
	}

	.comments-page-jump {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		color: #64748b;
		font-size: 12px;
	}

	.comments-page-input {
		width: 70px;
		padding: 8px 10px;
		border-radius: 999px;
		border: 1px solid rgba(148, 163, 184, 0.28);
		background: #fff;
		color: #1f2937;
		font-size: 12px;
		font-weight: 700;
		text-align: center;
		transition: box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
	}

	.comments-page-input:focus {
		border-color: rgba(91, 178, 126, 0.58);
		box-shadow: 0 0 0 4px rgba(91, 178, 126, 0.12);
	}

	.comments-page-input.is-flash {
		border-color: rgba(74, 155, 110, 0.52);
		background: #f0fdf4;
		box-shadow: 0 0 0 4px rgba(74, 155, 110, 0.12);
	}

	.comments-page-btn {
		border: 1px solid rgba(74, 155, 110, 0.2);
		background: #fff;
		color: #2f6f4b;
		border-radius: 999px;
		padding: 8px 14px;
		font-size: 12px;
		font-weight: 800;
		cursor: pointer;
		transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
	}

	.comments-page-btn:hover:not(:disabled) {
		background: #5bb27e;
		color: #fff;
		transform: translateY(-1px);
		box-shadow: 0 8px 18px rgba(91, 178, 126, 0.18);
	}

	.comments-page-btn:disabled {
		opacity: .48;
		cursor: not-allowed;
		box-shadow: none;
		transform: none;
	}

	.comments-inline-notice,
	.comments-sync-notice {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 0 0 12px;
		padding: 10px 12px;
		border-radius: 14px;
		background: linear-gradient(135deg, rgba(74, 155, 110, 0.12) 0%, rgba(47, 111, 75, 0.08) 100%);
		border: 1px solid rgba(74, 155, 110, 0.14);
		color: #2f6f4b;
		font-size: 13px;
		font-weight: 700;
		opacity: 1;
		transform: translateY(0);
		max-height: 72px;
		overflow: hidden;
		transition: opacity .22s ease, transform .22s ease, max-height .22s ease, margin .22s ease, padding .22s ease, border-width .22s ease;
	}

	.comments-inline-notice.hidden,
	.comments-sync-notice.hidden {
		opacity: 0;
		transform: translateY(-6px);
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		margin: 0;
		border-width: 0;
		pointer-events: none;
	}

	#comments {
		margin-top: 12px;
	}

	.comments-list {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.comment {
		margin: 0;
		padding: 14px;
		border: 1px solid rgba(226, 232, 240, 0.96);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
	}

	.comment-main {
		display: flex;
		align-items: flex-start;
		gap: 12px;
	}

	.comment-avatar {
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
		border-radius: 14px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #5bb27e 0%, #3f8a60 100%);
		color: #fff;
		font-size: 15px;
		font-weight: 800;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px rgba(91, 178, 126, 0.18);
	}

	.comment-body {
		flex: 1;
		min-width: 0;
	}

	.comment-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		flex-wrap: wrap;
	}

	.comment-author {
		font-size: 14px;
		font-weight: 800;
		color: #1f2937;
	}

	.comment-time {
		font-size: 12px;
		color: #94a3b8;
		white-space: nowrap;
	}

	.comment-content {
		margin-top: 8px;
		color: #334155;
		font-size: 14px;
		line-height: 1.85;
		word-break: break-word;
		white-space: normal;
	}

	.comment p {
		margin: 0;
	}

	.comment-reply-prefix {
		color: #3f8a60;
		font-weight: 800;
		margin-right: 4px;
	}

	.actions {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
		margin-top: 10px;
	}

	.reply,
	.show-replies {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		min-height: 28px;
		padding: 5px 10px;
		border-radius: 999px;
		background: #f8fafc;
		border: 1px solid rgba(226, 232, 240, 0.92);
		color: #64748b;
		font-size: 12px;
		font-weight: 800;
	}

	.reply:hover,
	.show-replies:hover {
		background: rgba(91, 178, 126, 0.11);
		border-color: rgba(91, 178, 126, 0.24);
		color: #2f6f4b;
	}

	.replies {
		margin: 12px 0 0 32px;
		padding-left: 14px;
		border-left: 2px solid rgba(91, 178, 126, 0.2);
		color: inherit;
	}

	.replies .comment {
		margin-top: 10px;
		padding: 12px;
		border-color: rgba(91, 178, 126, 0.14);
		background: linear-gradient(180deg, #fbfffd 0%, #ffffff 100%);
		box-shadow: none;
	}

	.replies .comment-avatar {
		width: 34px;
		height: 34px;
		border-radius: 12px;
		font-size: 13px;
		background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	}

	.comment-state {
		padding: 24px 16px;
		border-radius: 18px;
		background: #f8fafc;
		border: 1px dashed rgba(148, 163, 184, 0.46);
		text-align: center;
		color: #64748b;
		line-height: 1.8;
	}

	.comment-state strong {
		display: block;
		margin-bottom: 4px;
		font-size: 15px;
		font-weight: 800;
		color: #334155;
	}

	.comment-form-panel {
		margin-top: 16px;
		padding: 16px;
		border-radius: 20px;
		background: #f8fffb;
		border: 1px solid rgba(91, 178, 126, 0.14);
	}

	#comment-form {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	#new-comment.form-group,
	#comment-form .form-group {
		margin-bottom: 0 !important;
	}

	#comment-label,
	#comment-form .form-label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-bottom: 8px;
		color: #2f6f4b;
		font-size: 14px;
		font-weight: 800;
	}

	#comment-label .cancel-reply {
		padding: 2px 8px;
		border-radius: 999px;
		background: rgba(239, 68, 68, 0.08);
		color: #dc2626;
		font-size: 12px;
		font-weight: 800;
	}

	.comment-compose-textarea {
		min-height: 128px;
		width: 100%;
		padding: 12px 14px !important;
		border: 1px solid rgba(148, 163, 184, 0.32);
		border-radius: 16px;
		background: #fff !important;
		color: #1f2937;
		line-height: 1.8;
		resize: vertical;
		transition: border-color .18s ease, box-shadow .18s ease;
	}

	.comment-compose-textarea:focus {
		border-color: rgba(91, 178, 126, 0.62);
		box-shadow: 0 0 0 4px rgba(91, 178, 126, 0.12);
	}

	.comment-auth-links {
		margin-top: 10px;
		text-align: center;
		color: #94a3b8;
	}

	.comment-auth-links a {
		color: #2f6f4b;
		font-weight: 800;
	}

	.comment-code-row {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
	}

	.comment-code-input {
		width: 150px !important;
		padding: 9px 12px !important;
		border: 1px solid rgba(148, 163, 184, 0.32);
		border-radius: 999px;
		background: #fff;
	}

	#showcode {
		margin-left: 0 !important;
		border-radius: 10px;
		border: 1px solid rgba(226, 232, 240, 0.96);
		cursor: pointer;
	}

	.comment-submit-row {
		text-align: right;
	}

	#submit-comment {
		width: auto !important;
		min-width: 128px;
		padding: 10px 22px !important;
		border: 0;
		border-radius: 999px;
		background: linear-gradient(135deg, #5bb27e 0%, #3f8a60 100%);
		color: #fff;
		font-weight: 800;
		box-shadow: 0 10px 20px rgba(91, 178, 126, 0.18);
		cursor: pointer;
	}

	#submit-comment:hover {
		transform: translateY(-1px);
		box-shadow: 0 14px 26px rgba(91, 178, 126, 0.22);
	}

	@media (max-width: 700px) {
		.comments-panel {
			width: 100%;
			padding: 14px;
			border-radius: 18px;
		}

		.comments-head {
			align-items: flex-start;
			flex-direction: column;
			gap: 6px;
		}

		.comments-head-note {
			text-align: left;
		}

		.comments-pagination {
			align-items: stretch;
		}

		.comments-pagination-actions,
		.comments-page-jump {
			width: 100%;
		}

		.comments-page-btn {
			flex: 1;
		}

		.comments-page-input {
			flex: 1;
			width: auto;
		}

		.comment {
			padding: 12px;
		}

		.comment-main {
			gap: 10px;
		}

		.comment-avatar {
			width: 36px;
			height: 36px;
			border-radius: 12px;
		}

		.replies {
			margin-left: 12px;
			padding-left: 10px;
		}

		.comment-form-panel {
			padding: 14px;
		}

		.comment-code-input {
			flex: 1;
			width: auto !important;
		}

		.comment-submit-row {
			text-align: left;
		}

		#submit-comment {
			width: 100% !important;
		}
	}
