/* Fullscreen preloader centered vertically & horizontally */
#bigboost-preloader {
  position: fixed;
  inset: 0;
  background: #fffaf4;
  display: grid;
  place-items: center;
  z-index: 9999;
}

/* Text block */
#bb-text {
  width: min(90vw, 900px);
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: #000;
  line-height: 2; /* More space between lines */
}

/* Each line is a block for perfect vertical stacking */
#bb-text .line1,
#bb-text .line2,
#bb-text .line3 {
  display: block;
}

/* "Selected text" effect */
.text-selected {
  background-color: #E73819; /* default selection blue */
  color: #fff;
  border-radius: 3px;
  padding: 0 4px;
  transition: background-color 0.3s ease;
}

/* Fade-out transition */
.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Reset margin for true center alignment */
html, body {
  margin: 0;
  height: 100%;
}
