#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0891b2 100%);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#splash-screen.show {
  display: flex;
}

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

#splash-screen .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#splash-screen img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  opacity: 1;
}

#splash-screen h1 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFadeIn 0.5s ease-out 0.3s forwards;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #splash-screen img {
    width: 140px;
    height: 140px;
  }
  
  #splash-screen h1 {
    font-size: 36px;
  }
}
