/* Matrix Rain Canvas Base Styles */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

#matrix-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#matrix-controls:hover {
    opacity: 1;
}

.matrix-control-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #0f0;
    color: #0f0;
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.matrix-control-btn:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}