/* Shared style for the legal/support pages — matches the homepage look. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --text: #1A1A1A; --text-soft: #555555; --text-faint: #999999;
  --bg: #FAFAFA; --card: #FFFFFF; --border: #E5E5E5; --accent: #333333;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
.lang-toggle {
  position: fixed; top: 20px; right: 20px; z-index: 10;
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 6px 16px; font-size: 14px; color: var(--text-soft); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lang-toggle:hover { color: var(--text); }
.page { max-width: 720px; margin: 0 auto; padding: 72px 24px 64px; }
.home-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-faint); font-size: 14px;
  margin-bottom: 40px;
}
.home-link:hover { color: var(--text); }
.home-link img { width: 26px; height: 22px; }
h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.meta { font-size: 13.5px; color: var(--text-faint); margin-bottom: 40px; }
h2 { font-size: 19px; font-weight: 700; margin: 36px 0 10px; }
p, li { font-size: 15.5px; color: var(--text-soft); margin-bottom: 12px; }
ul { padding-left: 22px; margin-bottom: 12px; }
li { margin-bottom: 6px; }
a { color: var(--accent); }
.note {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 20px; margin: 20px 0; font-size: 14.5px;
}
footer {
  border-top: 1px solid var(--border); margin-top: 56px; padding-top: 28px;
  text-align: center; font-size: 13.5px; color: var(--text-faint);
}
footer a { color: var(--text-soft); text-decoration: none; margin: 0 8px; }
footer a:hover { text-decoration: underline; }
@media (max-width: 480px) { h1 { font-size: 25px; } .page { padding-top: 64px; } }
