@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Jost", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  background: rgbargba(22, 22, 22, 0.6);

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: whitesmoke;
}

/* ===== SPLASH LOADER ===== */
#splashScreen {
  position: fixed;
  inset: 0;
  background: #0f0f14;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#splashScreen.fade-out {
  opacity: 0;
  pointer-events: none;
}