/* Shared styles for the Lionheart Tarot legal / support pages.
   Dark purple + gold to match the app (LhTheme), so the pages look on-brand
   both inside the in-app browser and when viewed standalone on the web. */
:root {
  --text: #f1ddae;
  --muted: #b7a3cc;
  --gold: #cda26a;
  --gold-strong: #e6cb9f;
  --line: rgba(205, 162, 106, 0.22);
  --accent: #cda26a;
  --surface: rgba(64, 34, 98, 0.42);
  --surface-line: rgba(205, 162, 106, 0.3);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  /* Matches the app's radial screen background (top-lit violet → deep plum). */
  background: radial-gradient(
      150% 100% at 50% -10%,
      #36195a 0%,
      #1e0d36 46%,
      #0c0519 100%
    )
    no-repeat fixed,
    #0c0519;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.65;
}
header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(20, 11, 34, 0.55);
  backdrop-filter: blur(6px);
}
header.site .brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  text-decoration: none;
  font-size: 18px;
}
header.site nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
header.site nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
header.site nav a:hover,
header.site nav a:focus { color: var(--accent); }
.wrap { max-width: 720px; margin: 0 auto; padding: 32px 20px 80px; }
h1 { font-size: 28px; margin: 8px 0 4px; line-height: 1.2; color: var(--gold-strong); }
h2 { font-size: 20px; margin: 34px 0 8px; color: var(--gold-strong); }
h3 { font-size: 16px; margin: 22px 0 6px; color: var(--text); }
.updated { color: var(--muted); font-size: 14px; margin: 4px 0 24px; }
a { color: var(--accent); }
ul { padding-left: 20px; }
li { margin: 4px 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 18px 0;
}
.note {
  font-size: 14px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 14px;
  margin: 18px 0;
}
.muted { color: var(--muted); }
.index-list { list-style: none; padding: 0; }
.index-list li { margin: 12px 0; }
.index-list a { font-size: 18px; font-weight: 600; text-decoration: none; }
.index-list p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); }
