#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #010101;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-content {
  text-align: center;
  color: #ffc700;
}

.splash-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  animation: fadeInLogo 1.2s ease forwards;
}

.splash-loader {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255, 199, 0, 0.3);
  border-top-color: #ffc700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}