/* 恶臭数字论证器 */
.homo-wrap { max-width: 760px; margin: 0 auto; }
.homo-panel { background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 24px; }
.homo-section { margin-bottom: 22px; }
.homo-section:last-child { margin-bottom: 0; }
.homo-section h3 { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .95rem; margin: 0 0 12px; }
.homo-section h3 i { color: var(--accent); }

.homo-form-group input { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); font-size: 1.05rem; box-sizing: border-box; }
.homo-form-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.homo-actions { display: flex; gap: 10px; margin-top: 12px; }
.homo-actions .btn { flex: 1; justify-content: center; }

.homo-example-list { display: flex; flex-wrap: wrap; gap: 8px; }
.homo-example-btn { padding: 7px 15px; border: 1px solid var(--rule); border-radius: 999px; background: var(--bg2); color: var(--muted); font-size: .85rem; cursor: pointer; transition: all .15s ease; }
.homo-example-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.homo-tip-trigger { font-size: .8rem; color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.homo-tip-trigger:hover { color: var(--accent); }
.homo-tip-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.homo-result { min-height: 64px; padding: 16px; background: var(--bg2); border: 1px dashed var(--rule); border-radius: var(--radius-sm); font-size: 1.05rem; line-height: 1.7; word-break: break-all; }
.homo-empty, .homo-error { color: var(--muted); font-size: .9rem; }
.homo-error { color: #e53e3e; }
.homo-number { font-weight: 700; color: var(--accent); }
.homo-equals { color: var(--muted); margin: 0 4px; }
.homo-expression { font-family: "SFMono-Regular", Consolas, monospace; color: var(--ink); }

.homo-tip { margin-top: 12px; padding: 10px 14px; background: var(--accent-soft); border-radius: var(--radius-sm); font-size: .82rem; color: var(--muted); }

.homo-tips { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--rule); }
.homo-tips h4 { display: flex; align-items: center; gap: 6px; font-size: .95rem; margin: 0 0 10px; }
.homo-tips h4 i { color: var(--accent); }
.homo-tips p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

@media (max-width: 600px) {
  .homo-actions { flex-direction: column; }
}