:root {
  --bg: #f4f6fb;
  --panel: #ffffff;
  --ink: #15202b;
  --muted: #516173;
  --line: #d9e0ea;
  --brand: #0f62fe;
  --brand-ink: #0a3ba8;
  --ok: #1f7a1f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1100px 420px at 8% -10%, #d9e8ff 0%, transparent 70%), radial-gradient(900px 380px at 100% 0%, #d4f4ef 0%, transparent 60%), var(--bg);
}

.shell {
  max-width: min(1400px, 96vw);
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.navbar-brand {
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.hero p {
  margin: 6px 0 18px;
  color: var(--muted);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 2px 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.results {
  display: grid;
  gap: 12px;
}

.result-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 2px 0 rgba(20, 36, 58, 0.03);
}

.result-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.result-card h2 a {
  color: #0b3ea9;
  text-decoration: none;
}

.result-card h2 a:hover {
  text-decoration: underline;
}

.result-url {
  color: var(--ok);
  font-size: 0.92rem;
  word-break: break-word;
}

.result-card p {
  margin: 10px 0 8px;
  line-height: 1.45;
  color: #283646;
}

.result-card time {
  display: inline-block;
  font-size: 0.84rem;
  color: var(--muted);
}

.empty {
  text-align: center;
}

mark {
  background: #ffef7f;
  padding: 0 2px;
}

.pager {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pager a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
}

.pager a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.hint {
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed #b8c5d8;
  border-radius: 12px;
  color: var(--muted);
  background: #fff;
}

.domain-list {
  display: grid;
  gap: 10px;
}

.domain-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.domain-name {
  max-width: 78%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.domain-name-link {
  color: #0b3ea9;
  text-decoration: none;
}

.domain-name-link:hover {
  text-decoration: underline;
}

.domain-name-link.active {
  font-weight: 700;
  color: var(--brand-ink);
}

.domain-count {
  color: var(--muted);
}

.domain-bar {
  height: 8px;
  background: #e7edf5;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}

.domain-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1c68ff 0%, #4b8fff 100%);
}

.seed-url {
  max-width: 340px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  color: #0b3ea9;
  text-decoration: none;
}

.seed-url:hover {
  text-decoration: underline;
}

.seed-url-full {
  margin-top: 2px;
  font-size: 0.72rem;
  line-height: 1.25;
  color: #6e7e90;
  word-break: break-all;
}

.seed-url-full a {
  color: inherit;
  text-decoration: none;
}

.seed-url-full a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .search-form {
    grid-template-columns: 1fr;
  }
  .search-form button {
    min-height: 44px;
  }
}

/*# sourceMappingURL=styles.css.map */
