/* ROXSOCIAL static site — shared styles. Black + lime accent matches in-app brand. */
:root {
  --bg: #0A0A0A;
  --fg: #FFFFFF;
  --muted: #A0A0A0;
  --accent: #DCEA2C;    /* same lime used in TrackingShareSheet */
  --card: #161616;
  --border: #2A2A2A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Text', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 28px;
}
.brand img { height: 100%; width: auto; display: block; }
/* Fallback text style if img fails to load */
.brand-text {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--accent);
}

nav a {
  margin-left: 18px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
h2 { font-size: 18px; font-weight: 700; margin-top: 28px; margin-bottom: 8px; color: var(--fg); }
h3 { font-size: 15px; font-weight: 700; margin-top: 16px; margin-bottom: 6px; color: var(--fg); }
p, li { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
strong { color: var(--fg); }
.updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; display: block; }

ul, ol { padding-left: 22px; margin-bottom: 12px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 16px 0;
}

footer {
  margin-top: 64px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  nav a { margin-left: 12px; }
}
