/* =====================================================
   ✨ NEW MANTARA INTERACTIVE SPLASH
   ===================================================== */
body.launching {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at center, #3a0b12 0%, #1a0408 100%);
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  animation: splashFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all .5s ease;
  cursor: default;
}

.splash-container:hover {
  transform: none !important;
  box-shadow: none !important;
}

.mantara-logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transform: none;
}

.mantara-logo-wrapper::before,
.mantara-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid #ba113e;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}

.mantara-logo-wrapper::before {
  animation: mantara-pulse 2s infinite linear;
}

.mantara-logo-wrapper::after {
  animation: mantara-pulse 2s infinite linear 1s;
}

.splash-progress-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 3px solid transparent;
  border-top: 3px solid #ba113e;
  border-left: 3px solid #ba113e;
  border-radius: 50%;
  animation: mantara-spin 1.5s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

.splash-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  animation: mantara-spin 2.4s linear infinite;
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  will-change: transform;
  transform-origin: center center;
}

.splash-container:hover .splash-logo-img {
  transform: scale(1.08);
}

.splash-loading-text {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.splash-loading-text::after {
  content: "...";
  display: inline-block;
  width: 0;
  overflow: hidden;
  vertical-align: bottom;
  animation: mantara-dots 1.5s steps(4, end) infinite;
  margin-left: 5px;
}

.splash-sub-text {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

/* --- Keyframes --- */
@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mantara-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes mantara-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes mantara-pulse {
  0% { width: 100px; height: 100px; opacity: 0.5; }
  100% { width: 160px; height: 160px; opacity: 0; }
}

@keyframes mantara-dots {
  to { width: 1.25em; }
}
