:root {
  --bg: #ffffff;
  --card: #ffffff;
  --text: #666666;
  --muted: #6b7280;
  --accent: #1e90ff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

body {
  text-align: center;
  padding-top: 40px;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 24px 40px; }

.section { background: var(--card); }

h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
}

h2 { font-size: 25px; line-height: 1.25em; }

p { color: var(--text); margin: 8px 0 18px; font-size: 18px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.footer { display: none; }

.banner { max-width: 100%; height: auto; margin-bottom: 12px; }
.contact { margin: 60px auto 0 auto; }

/* Terms page layout */
.terms-container { padding: 20px; text-align: left; }
.brand-link { font-family: Helvetica, Arial, sans-serif; padding-top: 10px; margin: 0 0 8px; }
.brand-link a { color: var(--text); text-decoration: none; }
.brand-link a:hover { text-decoration: underline; }
.brand-colored .tiny { color: #f97316; font-weight: 800; }
.brand-colored .world { color: #22c55e; font-weight: 800; }
.legal-note .tiny { color: #f97316; font-weight: inherit; }
.legal-note .world { color: #22c55e; font-weight: inherit; }
.terms-title { text-align: center; margin: 16px 0; }
.terms-text { white-space: pre-wrap; }
.legal-note { font-weight: 700; margin-top: 6px; }
.legal-note .at { color: #f97316; }
.legal-note .year { color: #22c55e; }

