/* Custom Brutalist Styling Rules */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.brutalist-shadow-blue {
    box-shadow: 4px 4px 0px 0px rgba(45, 91, 255, 1);
    transition: all 0.15s ease;
}
.brutalist-shadow-blue:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px rgba(45, 91, 255, 1);
}
.brutalist-shadow-blue:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.brutalist-shadow-orange {
    box-shadow: 4px 4px 0px 0px rgba(255, 94, 7, 1);
    transition: all 0.15s ease;
}
.brutalist-shadow-orange:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px rgba(255, 94, 7, 1);
}
.brutalist-shadow-orange:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.brutalist-shadow-black {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    transition: all 0.15s ease;
}
.brutalist-shadow-black:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
}
.brutalist-shadow-black:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #131313;
}
::-webkit-scrollbar-thumb {
    background: #434656;
    border: 2px solid #131313;
}
::-webkit-scrollbar-thumb:hover {
    background: #2d5bff;
}

/* scanline animation */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(45, 91, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.15;
    position: absolute;
    bottom: 100%;
    animation: scanline 8s linear infinite;
}
@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

/* Settings Modal styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background-color: #1c1b1b;
    border: 3px solid #8e90a2;
    box-shadow: 8px 8px 0px 0px rgba(45, 91, 255, 1);
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

/* Hide scrollbar for technical logs */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom terminal color filter */
.terminal-text {
    color: #00dbe9;
    text-shadow: 0 0 2px rgba(0, 219, 233, 0.5);
}

/* Legibility Overrides for Brutalist Theme text colors */
.text-on-surface-variant {
    color: #c4c5d9 !important; /* Light greyish blue */
}
.text-outline {
    color: #a3a5b8 !important; /* Brighter muted grey */
}
.text-on-surface {
    color: #e5e2e1 !important; /* Off-white */
}
.text-outline-variant {
    color: #888a9c !important;
}
