.ss-wrap {
	--sky: rgb(50, 130, 184);
	--sky-d: rgb(35, 100, 148);
	--border: #e2e8f0;
	--muted: #64748b;
	--text: #0f172a;
	--card: #ffffff;
	--green: #10b981;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.07), 0 0 0 1px var(--border);
	--shadow-h: 0 14px 36px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
	--radius: 14px;
	margin: 18px 20px 60px;
	max-width: 1280px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--text);
}

.ss-header {
	background: linear-gradient(135deg, #0d1b2a 0%, #1a2f45 55%, rgb(30, 60, 100) 100%);
	border-radius: var(--radius);
	padding: 30px 36px;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.sky-seo-notices-container {
	margin: 0 0 16px 0;
	width: 100%;
}
.sky-seo-notices-container .notice {
	margin: 5px 0 10px !important;
	display: block !important;
}

.ss-header::after {
	content: "";
	position: absolute;
	top: -80px;
	right: -60px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(50, 130, 184, 0.38) 0%, transparent 70%);
	pointer-events: none;
}

.ss-brand {
	display: flex;
	align-items: center;
	gap: 18px;
	z-index: 2;
}

.ss-logo {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(6px);
}

.ss-logo svg {
	width: 32px;
	height: 32px;
}

.ss-header h1,
.ss-header h2 {
	margin: 0 0 4px;
	font-size: 23px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.ss-header p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.ss-header-links {
	display: flex;
	gap: 10px;
	z-index: 2;
	flex-shrink: 0;
}

.ss-ext-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 15px;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.17s, transform 0.14s;
}

.ss-ext-btn:hover {
	background: rgba(255, 255, 255, 0.24);
	color: #ffffff;
	transform: translateY(-1px);
}

.ss-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 20px;
}

.ss-card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-card:hover {
	box-shadow: var(--shadow-h);
	transform: translateY(-4px);
}

.ss-card-bar {
	height: 4px;
}

.ss-card-body {
	padding: 18px 20px 14px;
	flex-grow: 1;
}

.ss-card-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 11px;
}

.ss-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	flex-shrink: 0;
	background: #f1f5f9;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ss-icon img {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: block;
}

.ss-icon-placeholder {
	font-size: 21px;
	font-weight: 800;
	color: var(--sky);
}

.ss-card-name {
	margin: 0 0 3px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.25;
}

.ss-card-tagline {
	margin: 0;
	font-size: 12px;
	color: var(--muted);
	font-weight: 500;
}

.ss-desc {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ss-card-footer {
	padding: 12px 20px 16px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.ss-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
}

.ss-badge-active {
	background: rgba(16, 185, 129, 0.1);
	color: #059669;
	border: 1px solid rgba(16, 185, 129, 0.25);
}

.ss-badge-installed {
	background: rgba(50, 130, 184, 0.1);
	color: var(--sky);
	border: 1px solid rgba(50, 130, 184, 0.25);
}

.ss-badge-not_installed {
	background: #f1f5f9;
	color: var(--muted);
	border: 1px solid var(--border);
}

.ss-wrap .ss-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	height: 36px !important;
	line-height: 34px !important;
	padding: 0 16px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	border: 1px solid transparent !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	box-sizing: border-box !important;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ss-wrap .ss-btn-primary {
	background: rgb(50, 130, 184) !important;
	color: #ffffff !important;
	border-color: rgb(50, 130, 184) !important;
	box-shadow: 0 2px 5px rgba(50, 130, 184, 0.25) !important;
}

.ss-wrap .ss-btn-primary:hover {
	background: rgb(35, 100, 148) !important;
	color: #ffffff !important;
	border-color: rgb(35, 100, 148) !important;
	box-shadow: 0 4px 12px rgba(50, 130, 184, 0.35) !important;
}

.ss-wrap .ss-btn-outline {
	background: #ffffff !important;
	color: rgb(50, 130, 184) !important;
	border-color: rgba(50, 130, 184, 0.35) !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.ss-wrap .ss-btn-outline:hover {
	background: rgba(50, 130, 184, 0.06) !important;
	color: rgb(35, 100, 148) !important;
	border-color: rgb(50, 130, 184) !important;
}

.ss-wrap .ss-btn-active {
	background: #ecfdf5 !important;
	color: #059669 !important;
	border-color: rgba(16, 185, 129, 0.3) !important;
	cursor: default !important;
	box-shadow: none !important;
}

.ss-wrap .ss-btn:disabled {
	opacity: 0.65 !important;
	cursor: not-allowed !important;
}

.ss-spinner {
	width: 13px;
	height: 13px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: ss-spin 0.7s linear infinite;
	display: inline-block;
}

@keyframes ss-spin {
	to {
		transform: rotate(360deg);
	}
}

.ss-toast {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 999999;
	padding: 12px 18px;
	border-radius: 10px;
	background: #0f172a;
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	transform: translateY(90px);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-toast.show {
	transform: translateY(0);
	opacity: 1;
}

.ss-toast.ok {
	border-left: 4px solid #10b981;
}

.ss-toast.err {
	border-left: 4px solid #ef4444;
}
