#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0E0B14;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#splash.splash-exit {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.splash-logo-ring {
  width: 100px;
  height: 100px;
  border-radius: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-logo-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 40px;
  background: conic-gradient(from 0deg, #FF3D9A, #FF8A3D, #C8FF3D, #3DDBFF, #FF3D9A);
  animation: splash-ring-spin 2.4s linear infinite;
  z-index: 0;
}
.splash-logo-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: #0E0B14;
  z-index: 1;
}
.splash-logo-ring img {
  width: 80px;
  height: 80px;
  border-radius: 28px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  animation: splash-logo-pulse 1.8s ease-in-out infinite;
}
.splash-title {
  margin-top: 24px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FF3D9A, #FF8A3D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.splash-shimmer {
  width: 120px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #FF3D9A, transparent);
  background-size: 200% 100%;
  animation: splash-shimmer 1.2s ease-in-out infinite;
}
@keyframes splash-ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes splash-logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes splash-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
