/* ===== Boomclaw 通用底部样式 ===== */

footer {
    background: var(--bg-section, #111425);
    border-top: 1px solid var(--border, rgba(255,255,255,0.06));
    padding: 60px 24px 30px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    image-rendering: pixelated;
}

.footer-logo span {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    background: var(--gradient-fire, linear-gradient(135deg, #E63946, #FF8C42, #FFB347));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-light, #C8CCD8);
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: var(--fire-orange, #FF8C42);
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-light, #C8CCD8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-white, #F5F5F5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border, rgba(255,255,255,0.06));
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    color: var(--text-muted, #6B7194);
    font-size: 13px;
}

.footer-tech {
    display: flex;
    gap: 16px;
}

.footer-tech span {
    background: var(--bg-card, #1a1d35);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    footer {
        padding: 40px 16px 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand {
        grid-column: 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
