/* 全局样式优化 */
body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	background-color: #0f172a;
	color: #f8fafc;
	overflow-x: hidden;
}

/* 玻璃拟态效果 */
.glass {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 渐变文字 */
.text-gradient {
	background: linear-gradient(to right, #818cf8, #c084fc, #f472b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* 背景光晕 */
.glow-bg {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(15,23,42,0) 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
}

/* 滚动条美化 */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #0f172a; 
}
::-webkit-scrollbar-thumb {
	background: #334155; 
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #475569; 
}
.active{
	color: #6366f1 var(--tw-gradient-from-position);
}