/* 技能市场 · 赛博朋克纯搜索 */
.lx-sm {
	--sm-cyan: #00fff0;
	--sm-pink: #ff2bd6;
	--sm-violet: #8b5cff;
	--sm-amber: #f9f871;
	--sm-green: #34d399;
	--sm-red: #f87171;
	--sm-text: #e8f7ff;
	--sm-muted: #8aa0b8;
	--sm-panel: rgba(6, 12, 28, 0.55);
	--sm-line: rgba(0, 255, 240, 0.28);
	position: relative;
	color: var(--sm-text);
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 14px 48px;
	font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
	isolation: isolate;
}

/* 背景 FX */
.lx-sm__fx {
	pointer-events: none;
	position: absolute;
	inset: -20px -8px 0;
	z-index: 0;
	overflow: hidden;
	border-radius: 0;
}
.lx-sm__fx-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 255, 240, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 240, 0.04) 1px, transparent 1px);
	background-size: 36px 36px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 75%);
	animation: lx-sm-grid-drift 18s linear infinite;
}
.lx-sm__fx-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 15% 0%, rgba(0, 255, 240, 0.14), transparent 55%),
		radial-gradient(ellipse 45% 35% at 90% 10%, rgba(255, 43, 214, 0.12), transparent 50%),
		radial-gradient(ellipse 40% 30% at 50% 100%, rgba(139, 92, 255, 0.1), transparent 55%);
}
.lx-sm__fx-scan {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(0, 255, 240, 0.04) 48%,
		transparent 55%
	);
	background-size: 100% 220%;
	animation: lx-sm-scan 7s linear infinite;
	opacity: 0.7;
}
@keyframes lx-sm-grid-drift {
	to { background-position: 0 36px, 36px 0; }
}
@keyframes lx-sm-scan {
	0% { background-position: 0 -40%; }
	100% { background-position: 0 140%; }
}
.lx-sm > *:not(.lx-sm__fx) { position: relative; z-index: 1; }

/* Hero */
.lx-sm__hero {
	text-align: center;
	padding: 28px 18px 22px;
	margin-bottom: 16px;
	border-radius: 18px;
	border: 1px solid var(--sm-line);
	background:
		linear-gradient(155deg, rgba(0, 255, 240, 0.08) 0%, transparent 42%),
		linear-gradient(320deg, rgba(255, 43, 214, 0.07) 0%, transparent 48%),
		rgba(4, 8, 18, 0.45);
	box-shadow:
		0 0 0 1px rgba(139, 92, 255, 0.08) inset,
		0 16px 48px rgba(0, 0, 0, 0.35),
		0 0 40px rgba(0, 255, 240, 0.06);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.lx-sm__hero-hud {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid rgba(0, 255, 240, 0.3);
	background: rgba(0, 255, 240, 0.06);
	font-family: Orbitron, ui-monospace, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--sm-cyan);
}
.lx-sm__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f472b6;
	box-shadow: 0 0 10px #f472b6;
	animation: lx-sm-pulse 1.2s ease-in-out infinite;
}
@keyframes lx-sm-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(1.3); }
}
.lx-sm__title {
	margin: 0 0 18px !important;
	font-size: clamp(1.6rem, 3.5vw, 2.1rem) !important;
	font-weight: 900 !important;
	letter-spacing: 0.06em;
	background: linear-gradient(90deg, #67e8f9, #e0f2fe, #f0abfc, #67e8f9);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	animation: lx-sm-title-shine 5s linear infinite;
	text-shadow: none;
}
@keyframes lx-sm-title-shine {
	to { background-position: 200% center; }
}

/* Search */
.lx-sm__search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 560px;
	margin: 0 auto 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 255, 240, 0.4);
	background: rgba(0, 0, 0, 0.4);
	box-shadow:
		0 0 24px rgba(0, 255, 240, 0.12),
		inset 0 0 20px rgba(0, 255, 240, 0.04);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.lx-sm__search:focus-within {
	border-color: rgba(255, 43, 214, 0.55);
	box-shadow:
		0 0 32px rgba(0, 255, 240, 0.2),
		0 0 20px rgba(255, 43, 214, 0.12);
}
.lx-sm__search-ico {
	padding-left: 16px;
	font-size: 18px;
	color: var(--sm-cyan);
	opacity: 0.85;
	line-height: 1;
}
.lx-sm__search input {
	flex: 1;
	min-width: 0;
	border: 0 !important;
	background: transparent !important;
	color: var(--sm-text) !important;
	padding: 14px 12px !important;
	font: inherit;
	font-size: 15px !important;
	outline: none !important;
	box-shadow: none !important;
}
.lx-sm__search input::placeholder {
	color: #5c738c !important;
}
.lx-sm__search-hint {
	margin-right: 14px;
	padding: 3px 8px;
	border-radius: 6px;
	border: 1px solid rgba(0, 255, 240, 0.25);
	font-family: Orbitron, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(0, 255, 240, 0.55);
}

.lx-sm__hero-stats {
	display: inline-flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.lx-sm__stat {
	min-width: 88px;
	padding: 8px 14px;
	border-radius: 12px;
	border: 1px solid rgba(0, 255, 240, 0.18);
	background: rgba(0, 0, 0, 0.28);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.lx-sm__stat strong {
	font-size: 18px;
	font-weight: 800;
	color: var(--sm-cyan);
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 12px rgba(0, 255, 240, 0.35);
}
.lx-sm__stat span {
	font-size: 11px;
	color: var(--sm-muted);
	letter-spacing: 0.06em;
}

/* Buttons (detail / modal) */
.lx-sm__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	color: var(--sm-text);
	background: rgba(30, 41, 59, 0.85);
	transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.lx-sm__btn:hover { transform: translateY(-1px); }
.lx-sm__btn--primary {
	background: linear-gradient(135deg, rgba(0, 255, 240, 0.2), rgba(139, 92, 255, 0.3));
	border-color: rgba(0, 255, 240, 0.4);
	color: #a5f3fc;
}
.lx-sm__btn--cta {
	background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 52%, #6d28d9 100%);
	color: #fff !important;
	border: none;
	font-weight: 800;
	box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
}
.lx-sm__btn--ghost {
	background: transparent;
	border-color: rgba(148, 163, 184, 0.3);
	color: var(--sm-muted);
}
.lx-sm__btn--soft {
	background: rgba(167, 139, 250, 0.12);
	border-color: rgba(167, 139, 250, 0.35);
	color: #ddd6fe;
}
.lx-sm__btn--sm { padding: 6px 10px; font-size: 12px; }

/* Toolbar */
.lx-sm__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(0, 255, 240, 0.16);
	background: rgba(4, 8, 18, 0.4);
}
.lx-sm__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.lx-sm__cat {
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(0, 255, 240, 0.18);
	background: rgba(0, 0, 0, 0.25);
	color: var(--sm-muted);
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}
.lx-sm__cat.is-on,
.lx-sm__cat:hover {
	border-color: rgba(0, 255, 240, 0.5);
	color: #a5f3fc;
	background: rgba(0, 255, 240, 0.1);
	box-shadow: 0 0 14px rgba(0, 255, 240, 0.12);
}
.lx-sm__sorts {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--sm-muted);
}
.lx-sm__sort-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lx-sm__sorts select {
	padding: 6px 10px;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 240, 0.25);
	background: rgba(0, 0, 0, 0.4);
	color: var(--sm-text);
	font: inherit;
	cursor: pointer;
}

/* Section + Grid */
.lx-sm__section-h {
	font-size: 12px;
	font-weight: 700;
	font-family: Orbitron, ui-monospace, monospace;
	color: rgba(0, 255, 240, 0.7);
	margin-bottom: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.lx-sm__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 14px;
}

/* Cards */
.lx-sm__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 16px 14px 14px;
	border-radius: 14px;
	border: 1px solid rgba(0, 255, 240, 0.28);
	background:
		linear-gradient(155deg, rgba(0, 255, 240, 0.07) 0%, transparent 45%),
		linear-gradient(320deg, rgba(255, 43, 214, 0.05) 0%, transparent 50%),
		rgba(6, 12, 28, 0.42);
	cursor: pointer;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	text-align: left;
	color: inherit;
	min-height: 200px;
	overflow: hidden;
	isolation: isolate;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}
.lx-sm__card:hover {
	border-color: rgba(255, 43, 214, 0.5);
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px rgba(0, 255, 240, 0.12) inset,
		0 0 28px rgba(0, 255, 240, 0.14),
		0 16px 36px rgba(0, 0, 0, 0.35);
}
.lx-sm__card[data-v="2"] { --card-c: #ff2bd6; border-color: rgba(255, 43, 214, 0.3); }
.lx-sm__card[data-v="3"] { --card-c: #8b5cff; border-color: rgba(139, 92, 255, 0.35); }
.lx-sm__card[data-v="4"] { --card-c: #f9f871; border-color: rgba(249, 248, 113, 0.28); }
.lx-sm__card-corner {
	position: absolute;
	width: 12px;
	height: 12px;
	z-index: 3;
	pointer-events: none;
	opacity: 0.8;
}
.lx-sm__card-corner.tl { top: 7px; left: 7px; border-top: 2px solid var(--sm-cyan); border-left: 2px solid var(--sm-cyan); }
.lx-sm__card-corner.tr { top: 7px; right: 7px; border-top: 2px solid var(--sm-pink); border-right: 2px solid var(--sm-pink); }
.lx-sm__card-corner.bl { bottom: 7px; left: 7px; border-bottom: 2px solid var(--sm-pink); border-left: 2px solid var(--sm-pink); }
.lx-sm__card-corner.br { bottom: 7px; right: 7px; border-bottom: 2px solid var(--sm-cyan); border-right: 2px solid var(--sm-cyan); }
.lx-sm__card-scan {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 240, 0.06) 48%, transparent 55%);
	background-size: 100% 240%;
	animation: lx-sm-scan 5s linear infinite;
	opacity: 0.5;
}
.lx-sm__card-top,
.lx-sm__card-desc,
.lx-sm__card-meta,
.lx-sm__card-foot {
	position: relative;
	z-index: 2;
}
.lx-sm__card-top {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 10px;
}
.lx-sm__card-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 22px;
	background: linear-gradient(145deg, rgba(0, 255, 240, 0.15), rgba(139, 92, 255, 0.2));
	border: 1px solid rgba(0, 255, 240, 0.3);
	box-shadow: 0 0 16px rgba(0, 255, 240, 0.12);
	flex-shrink: 0;
}
.lx-sm__card-name {
	font-weight: 800;
	font-size: 15px;
	line-height: 1.3;
	color: #f0fbff;
}
.lx-sm__card-author {
	font-size: 11.5px;
	color: var(--sm-muted);
	margin-top: 3px;
	font-family: ui-monospace, monospace;
}
.lx-sm__card-desc {
	font-size: 13px;
	color: #9eb4cc;
	line-height: 1.55;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 12px;
}
.lx-sm__card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--sm-muted);
	margin-bottom: 10px;
}
.lx-sm__stars { color: #fbbf24; letter-spacing: 1px; }
.lx-sm__meta-sep { opacity: 0.4; }
.lx-sm__card-foot {
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px dashed rgba(0, 255, 240, 0.12);
}
.lx-sm__card-go {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--sm-cyan);
	transition: color 0.15s, text-shadow 0.15s;
}
.lx-sm__card:hover .lx-sm__card-go {
	color: #f0abfc;
	text-shadow: 0 0 12px rgba(255, 43, 214, 0.4);
}

.lx-sm__empty {
	text-align: center;
	color: var(--sm-muted);
	padding: 48px 12px;
	border: 1px dashed rgba(0, 255, 240, 0.2);
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.2);
}

/* Detail */
.lx-sm__layout.is-detail .lx-sm__list-wrap { display: none; }
.lx-sm__layout.is-detail .lx-sm__detail { display: block; }
.lx-sm__detail {
	border: 1px solid var(--sm-line);
	border-radius: 16px;
	background:
		linear-gradient(160deg, rgba(0, 255, 240, 0.06), transparent 40%),
		rgba(6, 12, 28, 0.7);
	padding: 16px 18px 24px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
}
.lx-sm__back {
	background: none;
	border: none;
	color: var(--sm-cyan);
	cursor: pointer;
	font-size: 13px;
	padding: 0 0 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.lx-sm__back:hover { color: #f0abfc; }
.lx-sm__d-head {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.lx-sm__d-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 28px;
	background: linear-gradient(145deg, rgba(0, 255, 240, 0.2), rgba(139, 92, 255, 0.25));
	border: 1px solid rgba(0, 255, 240, 0.35);
}
.lx-sm__d-title { font-size: 22px; font-weight: 900; margin: 0 0 4px; color: #f0fbff; }
.lx-sm__d-sub { font-size: 13px; color: var(--sm-muted); margin: 0 0 8px; }
.lx-sm__d-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-left: auto;
}
.lx-sm__d-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 14px;
}
.lx-sm__panel {
	border: 1px solid rgba(0, 255, 240, 0.18);
	border-radius: 12px;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.28);
	margin-bottom: 12px;
}
.lx-sm__panel h3 {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #a5f3fc;
	text-transform: uppercase;
	font-family: Orbitron, monospace;
}
.lx-sm__panel .lx-sm__md {
	font-size: 13.5px;
	line-height: 1.65;
	color: #cbd5e1;
}
.lx-sm__panel .lx-sm__md h2,
.lx-sm__panel .lx-sm__md h3 { color: #e0f2fe; margin: 0.6em 0 0.3em; font-size: 15px; text-transform: none; letter-spacing: 0; font-family: inherit; }
.lx-sm__panel .lx-sm__md code {
	background: rgba(0, 255, 240, 0.1);
	padding: 1px 5px;
	border-radius: 4px;
	color: #a5f3fc;
	font-size: 0.9em;
}
.lx-sm__panel .lx-sm__md ul { padding-left: 1.2em; }

.lx-sm__scan-score {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.lx-sm__scan-ring {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 900;
	font-size: 16px;
	border: 3px solid var(--sm-green);
	color: var(--sm-green);
	box-shadow: 0 0 16px rgba(52, 211, 153, 0.25);
}
.lx-sm__scan-ring.is-medium { border-color: var(--sm-amber); color: var(--sm-amber); }
.lx-sm__scan-ring.is-high { border-color: var(--sm-red); color: var(--sm-red); }

.lx-sm__findings { list-style: none; margin: 0; padding: 0; }
.lx-sm__findings li {
	font-size: 12.5px;
	padding: 6px 0;
	border-bottom: 1px dashed rgba(148, 163, 184, 0.15);
	color: var(--sm-muted);
}
.lx-sm__findings .sev {
	font-weight: 700;
	margin-right: 6px;
	text-transform: uppercase;
	font-size: 10px;
}
.lx-sm__findings .sev-critical,
.lx-sm__findings .sev-high { color: var(--sm-red); }
.lx-sm__findings .sev-medium { color: var(--sm-amber); }

.lx-sm__cli {
	display: flex;
	gap: 6px;
	align-items: stretch;
	margin-top: 8px;
}
.lx-sm__cli code {
	flex: 1;
	padding: 10px 12px;
	border-radius: 8px;
	background: #0b1220;
	border: 1px solid rgba(0, 255, 240, 0.2);
	font-size: 12px;
	overflow: auto;
	color: #a5f3fc;
	white-space: nowrap;
}
.lx-sm__kv {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 6px 10px;
	font-size: 12.5px;
}
.lx-sm__kv dt { color: var(--sm-muted); }
.lx-sm__kv dd { margin: 0; color: #e2e8f0; }

.lx-sm__rate-box {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 10px;
}
.lx-sm__rate-box select,
.lx-sm__rate-box input[type="text"] {
	padding: 7px 10px;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 240, 0.25);
	background: rgba(0, 0, 0, 0.4);
	color: var(--sm-text);
	font: inherit;
	font-size: 13px;
}
.lx-sm__rate-box input[type="text"] { flex: 1; min-width: 160px; }
.lx-sm__comments { list-style: none; margin: 0; padding: 0; }
.lx-sm__comments li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
	font-size: 13px;
}
.lx-sm__comments .meta { font-size: 11px; color: var(--sm-muted); margin-bottom: 2px; }
.lx-sm__related {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 8px;
}
.lx-sm__rel {
	padding: 10px;
	border-radius: 10px;
	border: 1px solid rgba(0, 255, 240, 0.18);
	background: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	text-align: left;
	color: inherit;
	font-size: 12.5px;
}
.lx-sm__rel strong { display: block; margin-bottom: 4px; }

/* Toast / Modal */
.lx-sm__toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	z-index: 100000;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(4, 10, 22, 0.95);
	border: 1px solid rgba(0, 255, 240, 0.4);
	color: #a5f3fc;
	font-size: 13px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 255, 240, 0.15);
}
.lx-sm__modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: grid;
	place-items: center;
}
.lx-sm__modal[hidden] { display: none !important; }
.lx-sm__modal-bd {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 16, 0.78);
	backdrop-filter: blur(6px);
}
.lx-sm__modal-card {
	position: relative;
	width: min(480px, 92vw);
	max-height: 88vh;
	overflow: auto;
	padding: 22px 20px 18px;
	border-radius: 16px;
	background: linear-gradient(160deg, #0a1220, #14102a);
	border: 1px solid rgba(0, 255, 240, 0.32);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 255, 240, 0.08);
	z-index: 1;
}
.lx-sm__modal-card h3 { margin: 0 0 12px; color: #f0fbff; }
.lx-sm__modal-x {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	color: var(--sm-muted);
	font-size: 22px;
	cursor: pointer;
}
.lx-sm__modal-x:hover { color: #fff; }
.lx-sm__modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

/* Publish form (modal, if opened elsewhere) */
.lx-sm__form label {
	display: block;
	font-size: 12.5px;
	color: var(--sm-muted);
	margin-bottom: 10px;
}
.lx-sm__form input,
.lx-sm__form textarea,
.lx-sm__form select {
	display: block;
	width: 100%;
	margin-top: 4px;
	box-sizing: border-box;
	border: 1px solid var(--sm-line);
	border-radius: 10px;
	background: rgba(2, 6, 23, 0.55);
	color: var(--sm-text);
	padding: 8px 10px;
	font-size: 13.5px;
	font-family: inherit;
}

/* Loading */
.lx-sm__loading {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 36px 20px;
	border-radius: 16px;
	border: 1px dashed rgba(0, 255, 240, 0.28);
	background: rgba(4, 10, 22, 0.45);
}
.lx-sm__loading-orb {
	position: relative;
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
}
.lx-sm__loading-orb .core { font-size: 28px; z-index: 1; animation: lx-sm-bob 1.6s ease-in-out infinite; }
.lx-sm__loading-orb .r {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #00fff0;
	border-right-color: rgba(255, 43, 214, 0.5);
	animation: lx-sm-spin 1.1s linear infinite;
}
.lx-sm__loading-orb .r2 {
	inset: -8px;
	border-top-color: #8b5cff;
	border-right-color: transparent;
	animation-direction: reverse;
	animation-duration: 1.6s;
}
@keyframes lx-sm-spin { to { transform: rotate(360deg); } }
@keyframes lx-sm-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
.lx-sm__loading-title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 800;
	color: #e2e8f0;
}
.lx-sm__loading-sub {
	margin: 0 0 14px;
	font-size: 12.5px;
	color: var(--sm-muted);
}
.lx-sm__loading-bar {
	width: min(220px, 70%);
	height: 4px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.15);
	overflow: hidden;
}
.lx-sm__loading-bar i {
	display: block;
	height: 100%;
	width: 40%;
	border-radius: inherit;
	background: linear-gradient(90deg, #00fff0, #ff2bd6);
	animation: lx-sm-bar 1.2s ease-in-out infinite;
}
@keyframes lx-sm-bar {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(280%); }
}

@media (max-width: 900px) {
	.lx-sm__d-grid { grid-template-columns: 1fr; }
	.lx-sm__d-actions { margin-left: 0; width: 100%; }
}
@media (max-width: 560px) {
	.lx-sm__hero { padding: 20px 12px 16px; }
	.lx-sm__search-hint { display: none; }
	.lx-sm__toolbar { flex-direction: column; align-items: stretch; }
}
@media (prefers-reduced-motion: reduce) {
	.lx-sm__fx-grid,
	.lx-sm__fx-scan,
	.lx-sm__title,
	.lx-sm__pulse,
	.lx-sm__card-scan {
		animation: none !important;
	}
}
