/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #1e6f8c 0%, #2a9d8f 50%, #e9c46a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#splash-screen.splash-fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-inner {
  text-align: center;
  color: #fff;
}
.splash-emoji {
  font-size: 4rem;
  animation: splash-bounce 1s ease-in-out infinite alternate;
}
.splash-spinner {
  width: 40px;
  height: 40px;
  margin: 18px auto;
  border: 4px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: splash-spin .8s linear infinite;
}
.splash-text {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: .9;
}

@keyframes splash-spin {
  to { transform: rotate(360deg); }
}
@keyframes splash-bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
