 body {
     background-color: #2A2E35;
     color: #ffffff;
     overflow-x: hidden;
 }

 .material-symbols-outlined {
     font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
 }

 .terminal-scroll::-webkit-scrollbar {
     width: 4px;
 }

 .terminal-scroll::-webkit-scrollbar-thumb {
     background: #45474b;
     border-radius: 2px;
 }

 .scanline {
     width: 100%;
     height: 2px;
     background: rgba(253, 200, 88, 0.1);
     position: absolute;
     top: 0;
     left: 0;
     animation: scan 4s linear infinite;
     z-index: 10;
     pointer-events: none;
 }

 @keyframes scan {
     0% {
         top: 0;
     }

     100% {
         top: 100%;
     }
 }

 .flicker {
     animation: flicker 0.1s infinite;
 }

 @keyframes flicker {
     0% {
         opacity: 0.9;
     }

     50% {
         opacity: 1;
     }

     100% {
         opacity: 0.95;
     }
 }