/* Atmospheric Instrument Ambient Glow (Cool Blue/Cyan Base) */
.bg-grid-pattern {
    background-color: #0b0d10;
    background-image: 
        radial-gradient(circle at 50% -10%, rgba(2, 132, 199, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 60%, rgba(14, 165, 233, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Concentrated Hardware LED Emitter Effect */
.glow-emerald-led {
    box-shadow: 0 0 6px #34d399, 0 0 12px #10b981;
}

/* Custom technical scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0d10;
}
::-webkit-scrollbar-thumb {
    background: #222933;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}