/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Splash Screen */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #ffffff, #e0f7fa);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease; /* dipercepat */
}

.splash-inner {
  text-align: center;
  animation: fadeIn 0.3s ease-in-out; /* dipercepat */
}

.logo {
  width: 120px;
  animation: bounce 1s infinite; /* lebih cepat juga */
}

.welcome-text {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #555;
}

/* Spinner Loading */
.spinner {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 4px solid #00bcd4;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite; /* lebih cepat */
}

/* Animasi */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Konten utama */
#main-content {
  padding: 40px;
  animation: fadeIn 0.3s ease-in-out; /* dipercepat */
}
