/* BidSpot — Static content pages (legal, about, rules) */
/* Relies on css/variables.css being linked before this file in <head>. */

.static-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.static-header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.static-brand {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
}
.static-brand span { color: var(--accent-primary); }

.static-back-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.static-back-link:hover { color: var(--accent-primary); }

.static-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 28px 80px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
}

.static-page h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.static-page .static-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.static-page h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 10px;
}

.static-page p { margin-bottom: 14px; }

.static-page ul, .static-page ol {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.static-page a { color: var(--accent-primary); font-weight: 600; }

.static-page strong { color: var(--text-primary); }

.static-callout {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

/* The .site-footer rules that used to live here now live in css/footer.css —
   every page links that file, not just the static pages that link this one. */
