/* StreamHub — стили текстовых (legal) страниц. Без внешних ресурсов. */

:root {
  --bg: #0b0c10;
  --bg-soft: #14161d;
  --text: #c9ccd4;
  --text-dim: #8b8f9a;
  --heading: #f2f3f5;
  --accent: #e50914;
  --accent-dim: #a3070f;
  --line: #23262f;
  --maxw: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0 20px 64px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Шапка */

.legal-header {
  max-width: calc(var(--maxw) + 300px);
  margin: 0 auto;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
}

.legal-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--heading);
}

.legal-logo span { color: var(--accent); }

.legal-logo:hover { text-decoration: none; }

.legal-title {
  max-width: calc(var(--maxw) + 300px);
  margin: 36px auto 6px;
  font-size: 30px;
  line-height: 1.25;
  color: var(--heading);
}

.legal-version {
  max-width: calc(var(--maxw) + 300px);
  margin: 0 auto 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.legal-intro {
  max-width: calc(var(--maxw) + 300px);
  margin: 0 auto 32px;
  font-size: 14px;
  color: var(--text-dim);
}

/* Раскладка: оглавление слева, текст по центру */

.legal-layout {
  display: flex;
  justify-content: center;
  gap: 56px;
  max-width: calc(var(--maxw) + 320px);
  margin: 0 auto;
  align-items: flex-start;
}

.legal-toc {
  width: 220px;
  flex: none;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  font-size: 14px;
}

.legal-toc-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.legal-toc ul { list-style: none; margin: 0; padding: 0; }

.legal-toc li { margin: 0 0 8px; }

.legal-toc a { color: var(--text-dim); }
.legal-toc a:hover { color: var(--accent); text-decoration: none; }

.legal-content { max-width: var(--maxw); min-width: 0; }

/* Типографика текста */

.legal-content h2 {
  margin: 44px 0 14px;
  padding-bottom: 8px;
  font-size: 21px;
  line-height: 1.3;
  color: var(--heading);
  border-bottom: 1px solid var(--line);
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  color: var(--heading);
}

.legal-content p { margin: 0 0 14px; }

.legal-content ul, .legal-content ol { margin: 0 0 16px; padding-left: 24px; }
.legal-content li { margin: 0 0 8px; }

.legal-content strong { color: var(--heading); font-weight: 600; }

.legal-content table {
  width: 100%;
  margin: 0 0 18px;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-content th, .legal-content td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-content th { color: var(--heading); background: var(--bg-soft); font-weight: 600; }

.legal-callout {
  margin: 0 0 18px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.legal-callout p { margin: 0; }
.legal-callout p + p { margin-top: 8px; }

/* FAQ: аккордеон на <details> */

details.faq-item {
  margin: 0 0 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

details.faq-item summary {
  padding: 14px 18px;
  cursor: pointer;
  color: var(--heading);
  font-weight: 600;
  list-style: none;
  position: relative;
}

details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

details.faq-item[open] summary::after { content: "–"; }

details.faq-item .faq-body { padding: 0 18px 14px; }
details.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* Футер */

.legal-footer {
  max-width: calc(var(--maxw) + 320px);
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-dim);
}

.legal-footer .copyright { margin: 0 0 12px; }

.legal-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.legal-footer a { color: var(--text-dim); }
.legal-footer a:hover { color: var(--accent); text-decoration: none; }

/* Мобильные: оглавление прячется */

@media (max-width: 900px) {
  .legal-toc { display: none; }
  .legal-layout { display: block; }
  .legal-title { font-size: 25px; }
  body { font-size: 15px; }
}
