:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --danger: #dc2626;
  --success: #16a34a;
  --warning: #f59e0b;
  --dark: #111827;
  --muted: #6b7280;
  --light: #f8fafc;
  --border: #e5e7eb;
}

body {
  background: var(--light);
  color: var(--dark);
}

.hero-box {
  background: linear-gradient(135deg, #0f766e, #134e4a);
  color: #fff;
  border-radius: 24px;
  padding: 42px 28px;
}

.search-card {
  margin-top: -38px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.result-box {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  background: #fff;
}

.result-selected {
  border-left: 6px solid var(--danger);
}

.result-safe {
  border-left: 6px solid var(--success);
}

.result-not-found {
  border-left: 6px solid var(--warning);
}

.small-muted {
  color: var(--muted);
  font-size: 14px;
}

.ad-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  min-height: 120px;
}

.ad-label {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 8px;
}

.disclaimer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
}

.footer {
  color: var(--muted);
  font-size: 14px;
}