.binary-matrix {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.binary-matrix.show {
    opacity: 1;
}

.binary-digit {
    font-family: 'VT323', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: glow 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.binary-digit.visible {
    opacity: 1;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
}

/* Remove the hover effect */
/* .container:hover .binary-matrix {
    opacity: 1;
} */

/* Ensure the dot stays above the matrix */
.blinking-dot {
    position: relative;
    z-index: 1;
} 