/* quicktools.dev — Base Styles */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--text-primary);
    background: var(--bg-primary);
}

/* ── Typography ── */
h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

a {
    color: var(--text-link);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

code, pre, .mono {
    font-family: var(--font-mono);
}

code {
    font-size: 0.875em;
    padding: 2px 6px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

pre {
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* ── Selection ── */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ── Scrollbar (Webkit) ── */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
