/* === FOOTER — DARK TECH === */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 20px !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem !important;
    color: #444 !important;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    position: relative;
}
body.light-mode .site-footer {
    background: #fafaf8;
    border-top: 1px solid rgba(0,0,0,0.07);
    color: #999 !important;
}
.site-footer::before {
    content: ''; position: absolute; left: 10%; right: 10%; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,102,51,0.15), transparent);
}
.site-footer .footer-content { max-width: 1200px; margin: 0 auto; }

.footer-nav {
    margin-bottom: 10px; display: flex; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.footer-nav a {
    color: #555; text-decoration: none;
    font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    font-size: 0.6rem; transition: color 0.3s;
}
.footer-nav a:hover { color: #ff6633; }
body.light-mode .footer-nav a { color: #888; }
body.light-mode .footer-nav a:hover { color: #e84a1a; }

.footer-copy { font-size: 0.55rem; color: #333; letter-spacing: 1px; }
body.light-mode .footer-copy { color: #aaa; }

@media (max-width: 600px) {
    .site-footer { padding: 20px 12px !important; }
    .footer-nav { gap: 16px; }
}
