:root {
  --bg: #f7f8fa;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #0f766e;
  --danger: #b91c1c;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--bg); }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.topbar { background: var(--panel); border-bottom: 1px solid var(--line); }
.topbar-inner { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-weight: 700; color: var(--text); font-size: 1rem; }
.search-compact { display: flex; gap: .5rem; width: min(100%, 420px); }
input[type="text"], input[type="url"], input[type="password"], select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: .65rem .75rem; font: inherit; color: var(--text); background: #fff; }
button, .btn { border: 0; border-radius: 8px; background: var(--brand); color: #fff; padding: .65rem .9rem; font: inherit; cursor: pointer; }
button.secondary, .btn.secondary { background: #4b5563; }
button.danger, .btn.danger { background: var(--danger); }
.shell { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
.sidebar { display: none; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: .75rem; height: fit-content; }
.sidebar a { display: block; padding: .45rem .5rem; border-radius: 6px; color: var(--text); }
.sidebar a:hover { background: #f3f4f6; text-decoration: none; }
.main { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1rem; }
.mobile-menu { margin: .6rem 0; }
.mobile-menu details { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; }
.mobile-menu summary { cursor: pointer; padding: .7rem .8rem; }
.mobile-menu nav { padding: 0 .8rem .8rem; display: grid; gap: .45rem; }
.hero-search { margin: 1rem 0 1.2rem; }
.hero-search form { display: grid; gap: .5rem; grid-template-columns: 1fr auto; }
.grid { display: grid; gap: 1rem; }
.kv { display: grid; gap: .5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kv div { border-top: 1px solid var(--line); padding-top: .45rem; }
.table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: .5rem; text-align: left; vertical-align: top; }
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.item { border-top: 1px solid var(--line); padding-top: .75rem; }
.meta { color: var(--muted); font-size: .92rem; }
.alert { border-radius: 8px; padding: .65rem .8rem; margin-bottom: .9rem; }
.alert.ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert.err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.badge { display: inline-block; font-size: .8rem; border-radius: 999px; padding: .2rem .55rem; background: #e5e7eb; color: #374151; }
.badge.scam { background: #fee2e2; color: #991b1b; }
.badge.telemarketing { background: #fef3c7; color: #92400e; }
.badge.safe { background: #dcfce7; color: #166534; }
.footer { color: var(--muted); font-size: .85rem; margin: 2rem 0 1rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
@media (min-width: 900px) {
  .shell { grid-template-columns: 220px 1fr; }
  .sidebar { display: block; }
  .mobile-menu { display: none; }
}
