/* Matrix Canvas Specific Styles */
#matrix-canvas {
    background: radial-gradient(ellipse at center, #001100 0%, #000000 100%);
}

/* Matrix Text Glow Effect */
.matrix-text {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00;
    font-family: 'Courier New', monospace;
}

/* Matrix-style animations */
@keyframes matrix-fade {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.matrix-fade {
    animation: matrix-fade 2s infinite alternate;
}
