/* Premium Splash Screen Styling */

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
  overflow: hidden;
}

#splash {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
  z-index: 9999;
  overflow: hidden;
}

/* Animated background gradient */
#splash::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.center {
  display: block;
  margin: 0 auto;
  max-width: 240px;
  position: relative;
  z-index: 1;
  animation: fadeInScale 1s ease-out;
  filter: drop-shadow(0 0 40px rgba(255, 107, 0, 0.4));
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Glow pulse effect */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 40px rgba(255, 107, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(255, 107, 0, 0.6));
  }
}

.center {
  animation: fadeInScale 1s ease-out, glowPulse 3s ease-in-out infinite 0.5s;
}
