/* ============================================
   Shri Kabariya - App Splash Screen
   Shows only on a fresh app open (see js/splash.js)
   ============================================ */

.sk-splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0d2440;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sk-splash-screen.sk-splash-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sk-splash-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid #c9973f;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: skRingIn 0.9s ease-out 0.1s forwards;
}

.sk-splash-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sk-splash-name-wrap {
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.sk-splash-name {
  display: inline-block;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #e0b563;
  opacity: 0;
  animation: skNameIn 0.7s ease-out 1s forwards;
}

.sk-splash-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: skShine 1s ease-in-out 1.9s forwards;
}

.sk-splash-sub {
  margin-top: 10px;
  font-size: 12px;
  color: #7c9ac2;
  opacity: 0;
  animation: skSubIn 0.6s ease-out 2.2s forwards;
}

@keyframes skRingIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes skNameIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes skShine {
  0% { left: -60%; }
  100% { left: 130%; }
}

@keyframes skSubIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}