#landing-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 800ms ease-out;
}

#landing-page.fade-out {
  opacity: 0;
  pointer-events: none;
}

.landing-content {
  text-align: center;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.artist {
  font-size: 18px;
  font-weight: 400;
  color: #b3b3b3;
  margin: 0 0 40px 0;
  letter-spacing: 1px;
}

.note {
  font-size: 14px;
  color: #999;
  margin: 0 0 50px 0;
  font-style: italic;
}

.begin-button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.begin-button:hover {
  background: rgba(74, 158, 255, 0.2);
  border-color: #4a9eff;
  color: #4a9eff;
  transform: translateY(-2px);
}

.begin-button:active {
  transform: translateY(0);
}

.begin-button:focus-visible {
  outline: 2px solid #4a9eff;
  outline-offset: 4px;
}

/* Loading indicator */
.loading-indicator {
  margin-top: 30px;
  opacity: 0;
  transition: opacity 300ms ease-in;
}

.loading-indicator.visible {
  opacity: 1;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #4a9eff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
}

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

@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }

  .artist {
    font-size: 16px;
  }

  .note {
    font-size: 13px;
    padding: 0 20px;
  }
}
