/* --- Тема Matrix --- */
body.theme-matrix {
    --gsearch-bg: #000;
    --gsearch-surface: rgba(10, 25, 10, 0.5);
    --gsearch-text: #00ff41;
    --gsearch-text-secondary: #008021;
    --gsearch-accent: #00ff41;
    --gsearch-border: #008021;
    --gsearch-input-bg: #000;
    font-family: 'Courier New', Courier, monospace !important;
    color: var(--gsearch-text) !important;
    background: #000;
}
body.theme-matrix.gsearch-light-theme { /* Светлая версия */
    --gsearch-bg: #fff;
    --gsearch-text: #008021;
    --gsearch-text-secondary: #00ff41;
}
#matrix-canvas {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}
body.theme-matrix #matrix-canvas { display: block; } /* Показываем только с темой */

.theme-matrix .gsearch-result-item, .theme-matrix .gsearch-sidebar > div {
    border: 1px solid var(--gsearch-border);
    backdrop-filter: blur(5px);
}
.theme-matrix .gsearch-result-title a { text-shadow: 0 0 5px var(--gsearch-accent); }