/* Static legal pages (privacy / terms / data-deletion).
 * These pages are deliberately plain HTML + CSS — NO JavaScript needed to read
 * them — because Google Play and Apple crawl them without running JS. The Nuxt
 * SPA renders nothing to a crawler, which is why Play rejected the privacy URL
 * ("does not link to a valid privacy policy page"). Keep them JS-free.
 * Colours mirror the Vuetify dark theme in nuxt.config.ts. */

@import url('/fonts.css');

:root {
  --bg: #0A0A0C;
  --surface: #16161A;
  --primary: #14B8A6;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.60);
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--app-font);
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

header.page-head { margin-bottom: 8px; }

h1 { font-size: 2rem; font-weight: 700; line-height: 1.3; margin: 0 0 4px; }
h2 { font-size: 1.2rem; font-weight: 700; line-height: 1.4; margin: 28px 0 8px; }
h3 { font-size: 1rem; font-weight: 600; margin: 20px 0 6px; }

.sub { color: var(--muted); font-size: 0.95rem; margin: 0 0 24px; }

p { line-height: 1.65; margin: 0 0 16px; }
ul { margin: 0 0 16px; padding-left: 22px; }
li { line-height: 1.6; margin-bottom: 10px; }

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

hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0 32px; }

/* Language jump links at the top of the bilingual pages. */
.langbar { display: flex; gap: 12px; justify-content: flex-end; margin-bottom: 16px; }
.langbar a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 0.85rem;
  color: var(--text);
}
.langbar a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #04211D;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 22px;
  text-align: center;
}
.btn:hover { text-decoration: none; opacity: 0.9; }

footer.page-foot {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}
footer.page-foot nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
footer.page-foot .copy { color: var(--muted); font-size: 0.8rem; margin-top: 12px; }

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  .wrap { padding: 24px 16px 48px; }
}
