/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  z-index: 200;
  width: 0;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(224, 167, 117, 0.6);
}

/* ============ BOOT OVERLAY ============ */
.boot-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}
.boot-overlay.done { opacity: 0; visibility: hidden; }
.boot-content {
  font-size: 13px;
  color: var(--text-dim);
  width: min(480px, 85vw);
  padding: 0 20px;
}
.boot-line {
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 6px;
}
.boot-line .ok { color: var(--green); }
.boot-line .prompt { color: var(--accent); margin-right: 10px; }
.boot-line .dim { color: var(--text-muted); }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ SHOOTING STAR ============ */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-bright);
  opacity: 0;
  pointer-events: none;
}
.shooting-star::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
  transform: translateX(-80px);
}
.shooting-star.go {
  animation: shoot 1.2s ease-out forwards;
}
@keyframes shoot {
  0% { opacity: 0; transform: translate(0, 0); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(300px, 180px); }
}
