/* 渐变色动态字体效果 */
.home-banner-title.gradient-text {
	background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	animation: gradient-animation 3s linear infinite;
	padding-right: 5px;
	width: auto !important;
	display: inline-block;
    max-width: 100%;
}

@keyframes gradient-animation {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* 打字机光标 - 使用伪元素确保紧跟文字 */
.home-banner-title.typing-cursor::after {
	content: '';
	display: inline-block;
	width: 4px; /* 光标宽度 */
	height: 40px; 
	background-color: #597EF7;
	margin-left: 8px; /* 光标与文字的距离 */
	vertical-align: -8px; /* 垂直对齐修正 */
	animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
	from, to { opacity: 0; }
	50% { opacity: 1; }
}
