#loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  text-align: center;
  transition: opacity 0.5s ease;
}

/* Logo */
#loader-logo {
  width: 20%; 
  height: auto;
  margin-bottom: 30px;
}

.loader-text {
  font-size: 1rem;
  margin-bottom: 8px; 
  letter-spacing: 1px;
  color: #f0f0f0;
  text-shadow:
    -1px -1px 0 #000,
    -1px 0px 0 #000,
    -1px 1px 0 #000,
    0px -1px 0 #000,
    0px 1px 0 #000,
    1px -1px 0 #000,
    1px 0px 0 #000,
    1px 1px 0 #000;
}

.progress-bar {
  width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 3px;
  transition: width 0.3s ease;
}