#splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #050810 0%, #0f172a 100%);
  z-index: 9999;
  transition: opacity 0.3s ease;
}
#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
#splash-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 16px;
}
#splash-logo svg {
  width: 40px;
  height: 40px;
  color: white;
}
#splash-text {
  color: #9ca3af;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
