/* Footer页脚区域 */
.footer-new { background-color: #0A0A0A; color: #CCCCCC; padding: 70px 0 30px; border-top: 3px solid #0A0A0A; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-brand { flex-shrink: 0; margin-right: 60px; max-width: 360px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { width: 42px; height: 42px; object-fit: contain; border: none; }
.footer-brand-name { font-family: var(--brutal-font-serif); font-size: 20px; font-weight: 800; color: #FFFFFF; }
.footer-brand-desc { font-size: 14px; color: #888888; line-height: 1.7; margin: 0; }
.footer-links-wrap { display: flex; flex: 1; justify-content: flex-end; gap: 60px; }
.footer-links-col { min-width: 100px; }
.footer-col-title { font-family: var(--brutal-font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #666666; margin-bottom: 20px; }
.footer-col-label { font-family: var(--brutal-font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #555555; margin-bottom: 8px; display: block; }
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a { color: #AAAAAA; font-size: 14px; text-decoration: none; transition: color 0.2s ease; display: block; padding: 3px 0; }
.footer-links-list a:hover { color: var(--brutal-accent-red); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-copyright { color: #777777; font-size: 13px; margin: 0; line-height: 2; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.footer-copyright a { color: #777777; text-decoration: none; transition: color 0.2s ease; }
.footer-copyright a:hover { color: var(--brutal-accent-red); }

.footer-badges {
	display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
	gap: 20px; margin-top: 16px; padding: 16px 24px;
	background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
}
.badge-item {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: 'Space Mono', monospace; font-size: 12px; font-weight: 600;
	color: #AAAAAA; padding: 6px 14px; background: rgba(0,0,0,0.3);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
	transition: all 0.25s ease; white-space: nowrap;
}
.badge-item img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.badge-item:hover { color: #FFFFFF; border-color: var(--brutal-accent-red); background: rgba(255,51,102,0.15); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,51,102,0.25); }

@media(max-width:992px){.footer-main{flex-direction:column;gap:36px}.footer-brand{margin-right:0;text-align:center;max-width:100%}.footer-logo-wrap{justify-content:center}.footer-links-wrap{flex-wrap:wrap;justify-content:center;gap:32px}.footer-links-col{min-width:calc(50% - 16px)}}
@media(max-width:576px){.footer-links-col{min-width:100%;text-align:center}.footer-copyright{flex-direction:column;gap:4px}.footer-badges{flex-direction:column;gap:10px}.badge-item{width:100%;justify-content:center}}
