/* ===== FULL BLACK BACKGROUND ===== */
body {
  margin: 0;
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow: hidden;
}

/* ===== LOADER CONTAINER ===== */
.boot-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== CENTER CONTENT ===== */
.boot-content {
  text-align: center;
  width: 90%;
  max-width: 500px;
}

/* ===== SHIELD ICON ===== */
.shield {
  margin-bottom: 20px;
}

/* ===== NAME ===== */
.boot-name {
  font-size: 24px;
  margin: 10px 0 5px;
  letter-spacing: 1px;
}

/* ===== ROLE ===== */
.boot-role {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* ===== PROGRESS BAR CONTAINER ===== */
.boot-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
  margin-bottom: 15px;
}

/* ===== PROGRESS BAR ===== */
.boot-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.1s linear;
}

/* ===== STATUS TEXT ===== */
.boot-status {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
  animation: blink 1.5s infinite;
}

/* ===== BLINK EFFECT ===== */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}
