/* ===== Qiangwei — shared legal stylesheet ===== */

:root {
  --bg: #0E0D16;
  --bg-alt: #141220;
  --surface: #1B1830;
  --border: #2B2744;
  --text: #E9E7F2;
  --text-muted: #A9A4C4;
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --indigo: #312E81;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
}

.legal-page {
  background-color: #0E0D16;
  color: #E9E7F2;
}

a {
  color: #A78BFA;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Legal header ===== */
.legal-header {
  background-color: #1B1830;
  background-image: linear-gradient(160deg, #1B1830 0%, #312E81 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid #2B2744;
}

.legal-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header .kicker {
  color: #A78BFA;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-header h1 {
  color: #FFFFFF;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.legal-header .updated {
  color: #E4DDF7;
  font-size: 15px;
}

/* ===== Legal content ===== */
.legal-content {
  padding: 56px 0 72px;
}

.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content section {
  background-color: transparent !important;
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #A78BFA;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 8px;
  padding-top: 24px;
}

.legal-content h3 {
  color: #E9E7F2;
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.legal-content p {
  color: #C8C4DE;
  font-size: 16px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: #C8C4DE;
  font-size: 16px;
  margin: 0 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: #FFFFFF;
}

/* ===== Table of contents ===== */
.toc {
  background-color: #1B1830;
  border: 1px solid #2B2744;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}

.toc h2 {
  color: #FFFFFF;
  font-size: 18px;
  margin: 0 0 14px;
  padding: 0;
}

.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.toc ol li {
  margin: 0;
  counter-increment: toc-count;
}

.toc ol li a {
  color: #A9A4C4;
  font-size: 14px;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #211D38;
}

.toc ol li a:hover {
  color: #A78BFA;
  text-decoration: none;
}

/* ===== Legal footer ===== */
.legal-footer {
  background-color: #141220;
  border-top: 2px solid #8B5CF6;
  padding: 32px 0;
}

.legal-footer .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.legal-footer p {
  color: #A9A4C4;
  font-size: 14px;
}

.legal-footer a {
  color: #A78BFA;
  font-size: 14px;
}

@media (max-width: 640px) {
  .legal-header h1 {
    font-size: 30px;
  }
  .toc ol {
    grid-template-columns: 1fr;
  }
}
