*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
}

.status-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.headline {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.fields {
  text-align: left;
  margin-bottom: 20px;
}

.field-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.field-label {
  color: #666;
  flex-shrink: 0;
  margin-right: 12px;
}

.field-value {
  color: #1a1a1a;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.freshness-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.freshness-FRESH {
  background: #d4edda;
  color: #155724;
}

.freshness-RECENT {
  background: #fff3cd;
  color: #856404;
}

.freshness-OLD {
  background: #e2e3e5;
  color: #383d41;
}

.explainer {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  text-align: left;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.headline--verified {
  color: #155724;
}

.headline--notfound {
  color: #495057;
}

.headline--error {
  color: #856404;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e3e5;
  border-top-color: #495057;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.branding {
  margin-top: 24px;
  font-size: 12px;
  color: #999;
}
