/* ============================================================
   VegasBet — Terms of Service page (/tos)
   Purple-on-dark, matches the License & About page design language.
   Content is agent-authored (Settings → Термсы) — the styling here has to
   survive an arbitrary number of sections, sub-headings and paragraphs.
   ============================================================ */

.tos-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 0 64px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.tos-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(ellipse 60% 90% at 85% 50%,
      rgba(124, 58, 237, .20) 0%,
      rgba(168, 85, 247, .07) 45%,
      transparent 70%),
    #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 40px;
}

.tos-hero-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.tos-hero-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.45));
}
.tos-hero-icon svg { width: 100%; height: 100%; display: block; }

/* ── Document ─────────────────────────────────────────────── */
.tos-body {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 40px 40px;
}

.tos-section + .tos-section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(124, 58, 237, 0.14);
}

.tos-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 14px;
}

.tos-item-heading {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.4;
  margin: 22px 0 10px;
}

/* Long legal prose — generous line-height, and `overflow-wrap` so an
   unbroken URL or wallet address in agent-written text can never widen the
   card and force the page to scroll sideways. */
.tos-text {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}

.tos-text:last-child { margin-bottom: 0; }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tos-page { padding: 18px 0 48px; }

  .tos-hero {
    padding: 22px 22px;
    gap: 16px;
  }

  .tos-hero-heading { font-size: 23px; }

  .tos-hero-icon {
    width: 40px;
    height: 40px;
  }

  .tos-body { padding: 24px 20px 28px; }

  .tos-section-title { font-size: 17px; }

  .tos-text { font-size: 14px; }
}
