  /* Minimalist centered overlay loader */
@font-face {
	font-family: 'VCR';
	src: url('../_fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
	font-style: normal;
}  
#preloader {
    position: fixed;
    inset: 0;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999; /* higher than anything else */
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
  }
  #preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .loader-inner {
    text-align: center;
    font-family: 'VCR';
    font-size: 1.2rem;
  }

  #progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin-top: 10px;
    overflow: hidden;
  }
  #progress-bar-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.2s ease;
  }