/* 文字跑马灯横幅 */
.text-marquee-section {
	background: #0A0A0A; padding: 20px 0;
	border-top: 3px solid #0A0A0A; border-bottom: 3px solid #0A0A0A;
	overflow: hidden; position: relative;
}
.text-marquee-section::before,
.text-marquee-section::after {
	content: ''; position: absolute; top: 0; width: 100px; height: 100%;
	z-index: 10; pointer-events: none;
}
.text-marquee-section::before { left: 0; background: linear-gradient(to right, #0A0A0A, transparent); }
.text-marquee-section::after { right: 0; background: linear-gradient(to left, #0A0A0A, transparent); }
.text-marquee-container { width: 100%; }
.text-marquee-wrapper { display: flex; white-space: nowrap; }
.text-marquee-content { display: flex; gap: 48px; will-change: transform; }
.text-marquee-item { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.marquee-icon { color: var(--brutal-accent-red); font-size: 10px; }
.marquee-text { font-family: var(--brutal-font-mono); font-size: 13px; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.12em; }
