.footer-console {
    background-color: #007acc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.85rem;
    color: white;
    padding: 15px;
    border-top: 2px solid #fff;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

footer.footer-console {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    padding: 15px 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.footer-col {
    flex: 1 1 20%;
    min-width: 150px;
    text-align: left;
}

.footer-col.wide {
    flex: 1 1 30%;
    min-width: 250px;
}

.footer-link {
    color: #0f0;
    text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
    color: #fff;
    text-decoration: underline;
}

.footer-link:visited {
    color: #0f0;
}

.footer-bottom-bar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #e0e0e0;
    gap: 10px;
    background-color: #005a9c;
}

.footer-bottom-bar span,
.footer-bottom-bar div {
    flex: 1 1 20%;
    min-width: 150px;
    text-align: center;
    word-break: break-word;
}

.footer-ascii-art {
    color: #fff;
    font-family: monospace;
    font-size: 18px;
    line-height: 1.2;
    padding: 8px 0;
    text-align: center;
    user-select: none;
}

.footer-disclaimer {
    color: #ccc;
    font-size: 0.8rem;
    padding-top: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    user-select: none;
}

.matrix-counter {
    font-family: 'Courier New', Courier, monospace;
    color: #0f0;
    background-color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    font-weight: bold;
    text-shadow: 0 0 5px #0f0, 0 0 10px #0f0, 0 0 20px #0f0, 0 0 40px #0f0;
    user-select: none;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.flashing-73 {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 3.5rem;
    color: #0f0;
    text-align: center;
    user-select: none;
    animation: neonBlink 1.5s infinite;
    text-shadow:
        0 0 8px #0f0,
        0 0 15px #0f0,
        0 0 30px #0f0,
        0 0 50px #00ff00,
        2px 2px 8px rgba(0, 255, 0, 0.3);
    border: 3px solid #0f0;
    border-radius: 8px;
    padding: 10px 20px;
    width: max-content;
    margin: 0 auto;
}

@keyframes neonBlink {
    0%, 50% {
        opacity: 1;
        text-shadow:
            0 0 8px #0f0,
            0 0 15px #0f0,
            0 0 30px #0f0,
            0 0 50px #00ff00,
            2px 2px 8px rgba(0, 255, 0, 0.3);
    }
    51%, 100% {
        opacity: 0.3;
        text-shadow: none;
    }
}
