/**
 * 404 / not-found component styles
 *
 * Matches the showcase aesthetic: clean and centered on a light background with
 * a single warm amber accent. No gradients, no emoji.
 */

.not-found-component {
  --nf-accent: #f97316;
  --nf-accent-2: #fb923c;
  --nf-ink: #0f172a;
  --nf-muted: #64748b;
  --nf-border: #e6e8ec;

  display: block;
  width: 100%;
}

.nf {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  font-family: var(--font-family-sans, 'Inter', system-ui, sans-serif);
}

.nf-content {
  text-align: center;
  max-width: 460px;
}

.nf-icon {
  display: inline-flex;
  padding: 14px;
  border-radius: 14px;
  color: var(--nf-accent);
  background: #fff7ed;
  margin-bottom: 1.25rem;
}

.nf-code {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--nf-accent-2);
}

.nf-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nf-ink);
  margin: 0.5rem 0 0.75rem;
}

.nf-message {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nf-muted);
  margin-bottom: 1.75rem;
}

.nf-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nf-btn-accent {
  background: var(--nf-accent);
  color: #1a1206;
}
.nf-btn-accent:hover {
  background: var(--nf-accent-2);
  transform: translateY(-1px);
}

.nf-btn-ghost {
  background: #fff;
  color: var(--nf-ink);
  border-color: var(--nf-border);
}
.nf-btn-ghost:hover {
  border-color: var(--nf-accent);
  color: var(--nf-accent);
}

@media (max-width: 480px) {
  .nf-title { font-size: 1.6rem; }
  .nf-actions { flex-direction: column; align-items: center; }
  .nf-btn { width: 100%; max-width: 240px; }
}
