#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #121212;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideLeft 0.5s ease-in-out 1.5s forwards;
}

#loadingGrid {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 16px;
  align-items: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.letter,
.ball,
.year {
  opacity: 0;
  transform: translateY(-40px);
  animation: dropIn 0.3s ease-out forwards;
}

.ball {
  width: 48px;
  height: 48px;
  opacity: 0;
  animation: ballDropSpin 1.2s ease-out forwards;
  animation-delay: 0.05s;
}

.year {
  font-size: 2rem;
  font-weight: normal;
}

/* Animations */
@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideLeft {
  to {
    transform: translateX(-100vw);
    opacity: 0;
  }
}

@keyframes ballDropSpin {
  0% {
    opacity: 0;
    transform: translateY(-40px) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(360deg);
  }
}
