.system-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
}

.footer-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background: rgba(20, 10, 30, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.center-section {
    align-items: center;
    text-align: center;
}

.right-section {
    align-items: flex-end;
    text-align: right;
}

.sys-text {
    font-weight: bold;
    letter-spacing: 1px;
}

.sys-subtext {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
}

.tech-highlight {
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

.bun-color { 
    color: #fbf0df; 
    text-shadow: 0 0 10px rgba(251, 240, 223, 0.3); 
}

.linux-color { 
    color: #FCC624; 
    text-shadow: 0 0 10px rgba(252, 198, 36, 0.3); 
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse-green 2s infinite;
}

.status-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: #00ff88;
    letter-spacing: 1px;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

@media (max-width: 768px) {
    .footer-glass {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .right-section { align-items: center; }
}
