.site-footer {
    padding: 10px 20px;
    background: rgba(10, 12, 15, 0.95);
    border-top: 2px solid var(--neon-primary);
    position: fixed;
    bottom: 0;
    left: 280px;
    width: calc(100% - 280px);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: left 0.3s ease, width 0.3s ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-brackets {
    position: relative;
    padding: 15px 30px;
    border: 1px solid rgba(0, 255, 157, 0.1);
    background: rgba(10, 12, 15, 0.5);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--neon-primary);
    margin-bottom: 0;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-status {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-primary);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--neon-primary);
}

@media (max-width: 1024px) {
    .site-footer {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-brackets {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        order: -1;
    }
}
