.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out;
}

.splash-content {
  text-align: center;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo-svg {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.splash-content h1 {
  font-family: var(--font-title);
  font-size: 5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 5px;
  line-height: 1;
}

.splash-content .subtitle {
  font-family: var(--font-subtitle);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: lowercase;
  letter-spacing: 1px;
  font-weight: 400;
}
