/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040053; /* Brand Dark Blue */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.count {
  font-family: "Host Grotesk", sans-serif;
  font-size: 12vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums; /* Prevents jitter as numbers change */
}

.preloader-tagline {
  display: flex;
  gap: 15px;
  overflow: hidden;
}

.preloader-tagline span {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(100%); /* For animation */
  opacity: 0;
}
