/* VidPlaza — legal pages & shared footer link styles */

:root {
  --bg-color: #000000;
  --text-color: #e8e8e8;
  --text-muted: #94a3b8;
  --accent-cyan: #00e5ff;
  --border-grey: #334155;
  --surface-raised: #141414;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.legal-page {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  color: var(--accent-cyan);
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  color: #f1f5f9;
  scroll-margin-top: 1rem;
}

.legal-jump-nav {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--border-grey);
  border-radius: 8px;
  background: var(--surface-raised);
}

.legal-jump-nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.legal-jump-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.legal-jump-nav li {
  margin: 0;
}

.legal-jump-nav a {
  font-size: 0.88rem;
}

.legal-jump-nav-hint {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-section-jump {
  margin: 0.35rem 0 1.5rem;
  padding-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.legal-section-jump a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.legal-section-jump a:hover {
  text-decoration: underline;
}

.legal-draft-note {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px dashed rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.05);
  color: #cbd5e1;
}

.legal-page p,
.legal-page li {
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--accent-cyan);
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-site-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-grey);
  margin-top: 2rem;
  background: #000000;
}

.legal-site-footer p {
  margin-bottom: 0.5rem;
}

.legal-site-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.legal-site-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-site-footer-links a:hover {
  color: var(--accent-cyan);
}

.legal-site-footer-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
}