/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	--text-dark: #333;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 15px 50px rgba(37, 99, 235, 0.3);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 导航栏 */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
}

.logo {
	font-size: 28px;
}

.logo-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--text-dark);
}

/* 英雄区域 */
.hero {
	position: relative;
	background: var(--gradient);
	color: var(--white);
	padding: 150px 0 100px;
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 15px;
	line-height: 1.2;
}

.gradient-text {
	background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 20px;
	opacity: 0.9;
	margin-bottom: 20px;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.95;
	margin-bottom: 40px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 50px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: var(--white);
	color: var(--primary-color);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--primary-color);
}

.hero-stats {
	display: flex;
	gap: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	opacity: 0.9;
}

/* 浏览器模拟 */
.browser-mockup {
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.browser-header {
	background: #f0f0f0;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.browser-dots {
	display: flex;
	gap: 6px;
}

.browser-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
}

.browser-dots span:nth-child(1) {
	background: #ff5f56;
}
.browser-dots span:nth-child(2) {
	background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
	background: #27c93f;
}

.browser-url {
	flex: 1;
	background: var(--white);
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 13px;
	color: var(--text-light);
}

.browser-content {
	padding: 30px;
	background: var(--white);
}

.extension-card {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 12px;
}

.extension-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.extension-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.extension-info h3 {
	color: var(--text-dark);
	margin-bottom: 5px;
}

.extension-info p {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 10px;
}

.status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.status-badge.active {
	background: #e8f5e9;
	color: #2e7d32;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.hero-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 60px;
}

.hero-wave path {
	fill: var(--white);
}

/* 功能特性 */
.features {
	padding: 100px 0;
	background: var(--white);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-light);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	padding: 40px 30px;
	background: var(--bg-light);
	border-radius: 16px;
	transition: all 0.3s;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
	background: var(--white);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: var(--gradient);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: var(--white);
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* 演示区域 */
.demo {
	padding: 100px 0;
	background: var(--bg-light);
}

.demo-container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.demo-before,
.demo-after {
	background: var(--white);
	padding: 30px;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.demo-before h3,
.demo-after h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 20px;
}

.demo-before h3 {
	color: #f44336;
}

.demo-after h3 {
	color: #4caf50;
}

.demo-content {
	background: var(--bg-light);
	padding: 20px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 2;
}

.demo-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.demo-arrow {
	font-size: 36px;
	color: var(--primary-color);
}

/* 使用场景 */
.use-cases {
	padding: 100px 0;
	background: var(--white);
}

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.use-case-card {
	padding: 40px 30px;
	background: var(--bg-light);
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s;
}

.use-case-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.use-case-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.use-case-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.use-case-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* 下载安装 */
.download {
	padding: 100px 0;
	background: var(--bg-light);
}

.download-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.download-card {
	background: var(--white);
	padding: 50px 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s;
	position: relative;
}

.download-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.download-card.primary {
	background: var(--gradient);
	color: var(--white);
}

.download-icon {
	font-size: 64px;
	margin-bottom: 25px;
}

.download-card.primary .download-icon {
	color: var(--white);
}

.download-card h3 {
	font-size: 26px;
	margin-bottom: 15px;
}

.download-card p {
	margin-bottom: 30px;
	opacity: 0.9;
}

.coming-soon {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.3);
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.install-steps {
	background: var(--white);
	padding: 50px;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.install-steps h3 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 40px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.step {
	text-align: center;
}

.step-number {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: var(--gradient);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
}

.step h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.step p {
	color: var(--text-light);
}

/* 文档资源 */
.docs {
	padding: 100px 0;
	background: var(--white);
}

.docs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.doc-card {
	padding: 40px 30px;
	background: var(--bg-light);
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	color: var(--text-dark);
	transition: all 0.3s;
}

.doc-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
	background: var(--white);
}

.doc-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.doc-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.doc-card p {
	color: var(--text-light);
}

/* FAQ */
.faq {
	padding: 100px 0;
	background: var(--bg-light);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--white);
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
}

.faq-question:hover {
	background: var(--bg-light);
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
}

.faq-question i {
	color: var(--primary-color);
	transition: transform 0.3s;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 30px 25px;
	color: var(--text-light);
	line-height: 1.8;
}

/* 页脚 */
.footer {
	background: #2d3748;
	color: var(--white);
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 20px;
}

.footer-section h3 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-logo {
	width: 20px;
	height: 20px;
	object-fit: contain;
	vertical-align: middle;
}

.footer-section p {
	opacity: 0.8;
	margin-bottom: 20px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-section a:hover {
	opacity: 1;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.8;
}

.footer-bottom p {
	margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.demo-container {
		grid-template-columns: 1fr;
	}

	.demo-arrow {
		transform: rotate(90deg);
	}
}

@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.hero-title {
		font-size: 36px;
	}

	.section-title {
		font-size: 32px;
	}

	.features-grid,
	.use-cases-grid,
	.docs-grid {
		grid-template-columns: 1fr;
	}
}

/* 主题切换按钮 */
.theme-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	color: var(--text-dark);
}

.theme-toggle:hover {
	background: var(--bg-light);
	transform: rotate(15deg);
}

/* 语言切换按钮 */
.lang-toggle {
	background: var(--bg-light);
	border: 1px solid var(--text-light);
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-dark);
	transition: all 0.3s;
	min-width: 36px;
}

.lang-toggle:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.theme-toggle .fa-sun {
	display: none;
}

.theme-toggle .fa-moon {
	display: block;
}

/* 暗黑主题样式 */
[data-theme='dark'] {
	--text-dark: #e4e4e7;
	--text-light: #a1a1aa;
	--bg-light: #27272a;
	--white: #18181b;
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	--shadow-hover: 0 15px 50px rgba(37, 99, 235, 0.4);
}

[data-theme='dark'] body {
	background: #18181b;
}

/* 暗黑主题 - 主题按钮图标切换 */
[data-theme='dark'] .theme-toggle .fa-sun {
	display: block;
}

[data-theme='dark'] .theme-toggle .fa-moon {
	display: none;
}

[data-theme='dark'] .theme-toggle:hover {
	background: #3f3f46;
}

/* 暗黑主题 - 语言切换按钮 */
[data-theme='dark'] .lang-toggle {
	background: #3f3f46;
	border-color: #52525b;
}

[data-theme='dark'] .lang-toggle:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

/* 暗黑主题 - 导航栏 */
[data-theme='dark'] .navbar {
	background: rgba(24, 24, 27, 0.95);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* 暗黑主题 - 浏览器模拟 */
[data-theme='dark'] .browser-mockup {
	background: #27272a;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme='dark'] .browser-header {
	background: #3f3f46;
}

[data-theme='dark'] .browser-dots span {
	background: #52525b;
}

[data-theme='dark'] .browser-url {
	background: #27272a;
	color: var(--text-light);
}

[data-theme='dark'] .browser-content {
	background: #27272a;
}

[data-theme='dark'] .extension-card {
	background: #3f3f46;
}

[data-theme='dark'] .status-badge.active {
	background: #166534;
	color: #4ade80;
}

/* 暗黑主题 - 功能卡片 */
[data-theme='dark'] .feature-card:hover {
	background: #3f3f46;
}

/* 暗黑主题 - 演示区域 */
[data-theme='dark'] .demo-before,
[data-theme='dark'] .demo-after {
	background: #27272a;
}

[data-theme='dark'] .demo-content {
	background: #3f3f46;
}

/* 暗黑主题 - 使用场景卡片 */
[data-theme='dark'] .use-case-card:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* 暗黑主题 - 下载卡片 */
[data-theme='dark'] .download-card {
	background: #27272a;
}

[data-theme='dark'] .download-card:hover {
	box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
}

[data-theme='dark'] .download-card .download-icon {
	color: #60a5fa;
}

[data-theme='dark'] .download-card h3 {
	color: #f4f4f5;
}

[data-theme='dark'] .download-card p {
	color: #a1a1aa;
}

[data-theme='dark'] .download-card .coming-soon {
	background: rgba(96, 165, 250, 0.2);
	color: #60a5fa;
}

[data-theme='dark'] .install-steps {
	background: #27272a;
}

[data-theme='dark'] .install-steps h3 {
	color: #f4f4f5;
}

[data-theme='dark'] .step h4 {
	color: #e4e4e7;
}

[data-theme='dark'] .step p {
	color: #a1a1aa;
}

/* 暗黑主题 - 波浪背景 */
[data-theme='dark'] .hero-wave path {
	fill: #18181b;
}

/* 暗黑主题 - 文档卡片 */
[data-theme='dark'] .doc-card {
	background: #27272a;
}

[data-theme='dark'] .doc-card:hover {
	background: #3f3f46;
}

/* 暗黑主题 - FAQ */
[data-theme='dark'] .faq-item {
	background: #27272a;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-theme='dark'] .faq-question:hover {
	background: #3f3f46;
}

/* 暗黑主题 - 页脚 */
[data-theme='dark'] .footer {
	background: #0f0f10;
}

[data-theme='dark'] .footer-section h3,
[data-theme='dark'] .footer-section h4 {
	color: #f4f4f5;
}

[data-theme='dark'] .footer-section p {
	color: #a1a1aa;
	opacity: 1;
}

[data-theme='dark'] .footer-section a {
	color: #d4d4d8;
	opacity: 1;
}

[data-theme='dark'] .footer-section a:hover {
	color: #60a5fa;
}

[data-theme='dark'] .social-links a {
	background: rgba(255, 255, 255, 0.1);
	color: #d4d4d8;
}

[data-theme='dark'] .social-links a:hover {
	background: var(--primary-color);
	color: #fff;
}

[data-theme='dark'] .footer-bottom {
	border-top-color: rgba(255, 255, 255, 0.1);
	color: #a1a1aa;
	opacity: 1;
}

[data-theme='dark'] .footer-bottom a {
	color: #60a5fa;
}

/* 自动跟随系统主题（当用户未手动设置时） */
@media (prefers-color-scheme: dark) {
	html:not([data-theme='light']) {
		--text-dark: #e4e4e7;
		--text-light: #a1a1aa;
		--bg-light: #27272a;
		--white: #18181b;
		--shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
		--shadow-hover: 0 15px 50px rgba(37, 99, 235, 0.4);
	}

	html:not([data-theme='light']) body {
		background: #18181b;
	}

	html:not([data-theme='light']) .theme-toggle .fa-sun {
		display: block;
	}

	html:not([data-theme='light']) .theme-toggle .fa-moon {
		display: none;
	}

	html:not([data-theme='light']) .theme-toggle:hover {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .lang-toggle {
		background: #3f3f46;
		border-color: #52525b;
	}

	html:not([data-theme='light']) .lang-toggle:hover {
		background: var(--primary-color);
		border-color: var(--primary-color);
	}

	html:not([data-theme='light']) .navbar {
		background: rgba(24, 24, 27, 0.95);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	}

	html:not([data-theme='light']) .browser-mockup {
		background: #27272a;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	}

	html:not([data-theme='light']) .browser-header {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .browser-dots span {
		background: #52525b;
	}

	html:not([data-theme='light']) .browser-url {
		background: #27272a;
		color: var(--text-light);
	}

	html:not([data-theme='light']) .browser-content {
		background: #27272a;
	}

	html:not([data-theme='light']) .extension-card {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .status-badge.active {
		background: #166534;
		color: #4ade80;
	}

	html:not([data-theme='light']) .feature-card:hover {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .demo-before,
	html:not([data-theme='light']) .demo-after {
		background: #27272a;
	}

	html:not([data-theme='light']) .demo-content {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .use-case-card:hover {
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	}

	html:not([data-theme='light']) .download-card {
		background: #27272a;
	}

	html:not([data-theme='light']) .download-card:hover {
		box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
	}

	html:not([data-theme='light']) .download-card .download-icon {
		color: #60a5fa;
	}

	html:not([data-theme='light']) .download-card h3 {
		color: #f4f4f5;
	}

	html:not([data-theme='light']) .download-card p {
		color: #a1a1aa;
	}

	html:not([data-theme='light']) .download-card .coming-soon {
		background: rgba(96, 165, 250, 0.2);
		color: #60a5fa;
	}

	html:not([data-theme='light']) .install-steps {
		background: #27272a;
	}

	html:not([data-theme='light']) .install-steps h3 {
		color: #f4f4f5;
	}

	html:not([data-theme='light']) .step h4 {
		color: #e4e4e7;
	}

	html:not([data-theme='light']) .step p {
		color: #a1a1aa;
	}

	html:not([data-theme='light']) .hero-wave path {
		fill: #18181b;
	}

	html:not([data-theme='light']) .doc-card {
		background: #27272a;
	}

	html:not([data-theme='light']) .doc-card:hover {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .faq-item {
		background: #27272a;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	}

	html:not([data-theme='light']) .faq-question:hover {
		background: #3f3f46;
	}

	html:not([data-theme='light']) .footer {
		background: #0f0f10;
	}

	html:not([data-theme='light']) .footer-section h3,
	html:not([data-theme='light']) .footer-section h4 {
		color: #f4f4f5;
	}

	html:not([data-theme='light']) .footer-section p {
		color: #a1a1aa;
		opacity: 1;
	}

	html:not([data-theme='light']) .footer-section a {
		color: #d4d4d8;
		opacity: 1;
	}

	html:not([data-theme='light']) .footer-section a:hover {
		color: #60a5fa;
	}

	html:not([data-theme='light']) .social-links a {
		background: rgba(255, 255, 255, 0.1);
		color: #d4d4d8;
	}

	html:not([data-theme='light']) .social-links a:hover {
		background: var(--primary-color);
		color: #fff;
	}

	html:not([data-theme='light']) .footer-bottom {
		border-top-color: rgba(255, 255, 255, 0.1);
		color: #a1a1aa;
		opacity: 1;
	}

	html:not([data-theme='light']) .footer-bottom a {
		color: #60a5fa;
	}
}
