body {
    margin: 0;
    padding: 0;
    font-family: Consolas, monospace;
    background: black;
    color: #0f0;
    overflow: hidden;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 100px;
}

input {
    padding: 10px;
    width: 300px;
    border-radius: 8px;
    border: 1px solid #0f0;
    background: black;
    color: #0f0;
}

button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: #0f0;
    color: black;
    cursor: pointer;
}

    button:hover {
        background: #00ff88;
    }

.result p {
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    color: #0f0;
    font-family: Consolas, monospace;
    font-size: 14px;
    border-top: 1px solid #0f0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

    .footer p {
        margin: 0;
        opacity: 0.8;
    }

        .footer p:hover {
            opacity: 1;
            text-shadow: 0 0 8px #0f0;
        }