body {
  margin: 0;
  padding: 0;
  background-color: #05070A;
  overflow: hidden;
}

#splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #05070A;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#splash-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.footer-container {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 10000;
}

.footer-link {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  margin: 0 10px;
  pointer-events: auto;
}

.footer-link:hover {
  color: rgba(255,255,255,0.6);
}
