/* Tools-only base styles
   This file intentionally contains only shared styling required by Free Tools pages.
   Global theme/page styles from the original website were removed. */

:root {
  --indzu-primary: #6366f1;
  --indzu-primary-dark: #4f46e5;
  --indzu-text: #0f172a;
  --indzu-muted: #64748b;
  --indzu-bg: #f3f5fb;
  --indzu-card: #ffffff;
  --indzu-border: #e2e8f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--indzu-text);
  background: var(--indzu-bg);
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* Simple fallback buttons used inside tools. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--indzu-primary), var(--indzu-primary-dark));
  box-shadow: 0 10px 24px rgba(79,70,229,.22);
}
.btn-ghost {
  color: #334155;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--indzu-border);
}

/* Page wrapper after removing full-site header/footer theme. */
.ft-page { min-height: 100vh; }
