/* Shared styles for the static, server-rendered legal pages
   (terms / privacy-policy / refund-policy / contact). These exist as real
   HTML so crawlers and compliance checkers (e.g. Razorpay) — which don't run
   the SPA's JavaScript — see the full policy text. */
:root {
  --bg: #0a0010;
  --panel: #13001f;
  --gold: #c9a84c;
  --gold-bright: #ffd966;
  --text: #e9e2f5;
  --muted: #a99fc0;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-bright); }
a:hover { color: #fff; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.site-header .brand { font-weight: 700; font-size: 18px; color: #fff; text-decoration: none; }
.site-header .brand span { color: var(--gold); }
.site-header .home { font-size: 13px; color: var(--muted); text-decoration: none; }
.site-header .home:hover { color: var(--gold-bright); }
.wrap { max-width: 760px; margin: 0 auto; padding: 32px 20px 56px; }
h1 { font-size: 30px; line-height: 1.2; color: #fff; margin: 6px 0 4px; }
.updated { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.intro {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 14px 16px; margin-bottom: 28px; color: #d7cdeb;
}
section.legal { margin-bottom: 22px; }
section.legal h2 { font-size: 17px; color: var(--gold); margin: 0 0 8px; }
section.legal h2 .num { color: rgba(201, 168, 76, 0.55); margin-right: 8px; }
section.legal ul { padding-left: 20px; margin: 8px 0; }
section.legal li { margin: 6px 0; }
strong { color: #fff; }
.card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(20, 8, 48, 0.55);
  border-radius: 14px; padding: 18px 20px; margin: 14px 0;
}
.card .label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201, 168, 76, 0.9); margin: 0 0 6px; }
.card .email { font-size: 24px; font-weight: 700; color: #fff; text-decoration: none; }
footer.legal {
  max-width: 760px; margin: 28px auto 0; padding: 18px 20px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 13px; color: var(--muted);
}
footer.legal nav a { margin-right: 16px; text-decoration: none; }
