/* betchagame.com — ripple.so-style minimalism with Betcha's coin on top.
   One statement, lots of whitespace, tiny legal footer. Light/dark aware. */
:root {
  color-scheme: light dark;
  --bg: #fffdfb;
  --text: #151519;
  --dim: #6b6f76;
  --tint: #0fa36b;
  --border: #e8e5e0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101318;
    --text: #eef1f5;
    --dim: #8a98a8;
    --tint: #3ddc97;
    --border: #232a33;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; width: 100%; }

/* landing */
.hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 18vh 24px 8vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero img.icon { width: 96px; height: 96px; border-radius: 22px; }
.hero h1 { font-size: 44px; letter-spacing: -1px; }
.hero .tagline { font-size: 20px; color: var(--dim); max-width: 26em; }
.hero .soon {
  margin-top: 10px;
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  color: var(--tint);
}
.hero .fine { font-size: 13px; color: var(--dim); margin-top: 18px; }

/* legal + support pages */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}
.doc h1 { font-size: 30px; letter-spacing: -0.5px; margin-bottom: 6px; }
.doc h2 { font-size: 19px; margin: 28px 0 8px; }
.doc p, .doc li { color: var(--text); font-size: 15.5px; margin-bottom: 10px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc a { color: var(--tint); }
.doc .updated { color: var(--dim); font-size: 14px; margin-bottom: 22px; }
.homelink {
  display: inline-block;
  margin: 24px 0 0 24px;
  color: var(--dim);
  text-decoration: none;
  font-size: 14px;
}
.homelink:hover { color: var(--text); }

footer {
  text-align: center;
  padding: 28px 24px 36px;
  color: var(--dim);
  font-size: 13.5px;
}
footer a { color: var(--dim); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--text); }
