/* ═══════════════════════════════════════════════
   VYHRAJ LEGAL PAGES — Dark Theme
   Scoped to body.vyhraj-legal
   Shared by: obchodne-podmienky, statut-sutaze, gdpr
   ═══════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@500,700,800&f[]=satoshi@400,500,700&display=swap');

body.vyhraj-legal {
  --bg:        #0f1629;
  --surface:   #18233d;
  --surface-2: #202d4d;
  --line:      rgba(255,255,255,.08);
  --text:      #eef3ff;
  --muted:     #9bacd3;
  --faint:     rgba(255,255,255,.3);
  --blue:      #3d6df2;
  --blue-l:    #6b96ff;
  --amber:     #f5a623;
  --radius:    16px;
}

body.vyhraj-legal {
  font-family: "Satoshi", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ── Page layout ──────────────────────────────── */
body.vyhraj-legal .legal-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  align-items: start;
}

@media (max-width: 768px) {
  body.vyhraj-legal .legal-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Sticky sidebar TOC ───────────────────────── */
body.vyhraj-legal .legal-toc {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

@media (max-width: 768px) {
  body.vyhraj-legal .legal-toc {
    position: static;
    display: none;
  }
}

body.vyhraj-legal .legal-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

body.vyhraj-legal .legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.vyhraj-legal .legal-toc-list a {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none !important;
  padding: 5px 8px;
  border-radius: 8px;
  line-height: 1.4;
  transition: background .14s, color .14s;
}

body.vyhraj-legal .legal-toc-list a:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}

body.vyhraj-legal .legal-toc-list a.active {
  background: rgba(61,109,242,.12);
  color: var(--blue-l);
}

/* ── Main content area ────────────────────────── */
body.vyhraj-legal .legal-content {
  min-width: 0;
}

/* Page header */
body.vyhraj-legal .legal-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

body.vyhraj-legal .legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(61,109,242,.3);
  background: rgba(61,109,242,.08);
  color: var(--blue-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

body.vyhraj-legal .legal-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

body.vyhraj-legal .legal-meta {
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
body.vyhraj-legal .legal-section {
  margin-bottom: 36px;
  scroll-margin-top: 90px;
}

body.vyhraj-legal .legal-section h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.vyhraj-legal .legal-section h2 .section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(61,109,242,.15);
  border: 1px solid rgba(61,109,242,.25);
  color: var(--blue-l);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

body.vyhraj-legal .legal-section h2 .section-num.roman {
  min-width: 1.6em;
  font-size: 10px;
}

body.vyhraj-legal .legal-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 72ch;
}

body.vyhraj-legal .legal-section p:last-child {
  margin-bottom: 0;
}

body.vyhraj-legal .legal-section ul,
body.vyhraj-legal .legal-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

body.vyhraj-legal .legal-section li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

body.vyhraj-legal .legal-section strong,
body.vyhraj-legal .legal-section b {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

body.vyhraj-legal .legal-section a {
  color: var(--blue-l);
  text-decoration: underline;
}

body.vyhraj-legal .legal-section a:hover {
  color: #fff;
}

/* Sub-points (a. b. c. style paragraphs) */
body.vyhraj-legal .legal-point {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

body.vyhraj-legal .legal-point-label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--blue-l);
  min-width: 20px;
}

/* Effective date / validity note */
body.vyhraj-legal .legal-validity {
  margin-top: 40px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(61,109,242,.06);
  border: 1px solid rgba(61,109,242,.15);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
