#boot-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#boot-logo {
  width: clamp(140px, 20vw, 220px);
  height: clamp(72px, 12vw, 120px);
  display: block;
  position: relative;
  overflow: hidden;
}

.boot-track {
  width: clamp(130px, 16vw, 200px);
  height: 3px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 1.5px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
}

#boot-bar {
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 1.5px;
  transition: width 0.4s ease-in-out;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.45), 0 0 14px rgba(0, 0, 0, 0.2);
}
