/* STRAYLIGHT Footer - GonzoAdmin Terminal */
.straylight-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9998 !important;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid #00ff41;
    box-shadow: 0 -2px 10px rgba(0, 255, 65, 0.2);
    height: 32px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 11px;
    color: #00ff41;
    overflow: hidden;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.straylight-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00ff41 50%, transparent 100%);
    animation: footerScanline 3s linear infinite;
}

@keyframes footerScanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.straylight-footer-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    justify-content: space-between;
}

.footer-admin-tag {
    color: #ff4444;
    font-weight: bold;
    text-shadow: 0 0 3px #ff4444;
}

.footer-session-comment {
    color: #00ff41;
    opacity: 0.8;
    font-style: italic;
}

.footer-timestamp {
    color: #888;
    font-size: 10px;
    opacity: 0.6;
}

/* Glitch effect for footer */
.straylight-footer:hover {
    animation: footerGlitch 0.3s ease-in-out;
}

@keyframes footerGlitch {
    0%, 100% { transform: none; }
    20% { transform: skew(-0.5deg); }
    40% { transform: skew(0.5deg); }
    60% { transform: skew(-0.3deg); }
    80% { transform: skew(0.3deg); }
}

/* Ensure body has bottom margin for footer */
body.has-straylight-footer {
    margin-bottom: 32px !important;
}