/**
 * GuidedTour - 404 Not Found Styles
 * Simple, clean 404 page matching framework aesthetic
 */

.not-found-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--background-primary);
  padding: 32px;
}

.not-found-content {
  max-width: 480px;
  text-align: center;
}

.not-found-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--secondary-accent);
  margin-bottom: 24px;
}

.not-found-message {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.not-found-hint {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 620px) {
  .not-found-content {
    padding: 0 20px;
  }
  
  .not-found-title {
    margin-bottom: 16px;
  }
}
