:root { color-scheme: light; }
html, body {
  min-height: 100%;
  margin: 0;
  background: #0f1115;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  padding-bottom: 96px;
}
a { color: #9a9aa5; text-decoration: none; }
a:hover { color: #f5f5f7; }
header {
  border-bottom: 1px solid #2c2f38;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { font-weight: 600; font-size: 1.125rem; color: #f5f5f7; }
nav { display: flex; gap: 20px; font-size: 0.9rem; flex-wrap: wrap; }
nav a.active { color: #f5f5f7; }
main { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}
.hero h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
  max-width: 900px;
}
.hero p { color: #9a9aa5; font-size: 1rem; margin: 0; max-width: 640px; }
.article {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.article h1 { font-size: 1.75rem; font-weight: 600; margin-bottom: 8px; }
.article h2 { font-size: 1.25rem; font-weight: 600; margin-top: 32px; margin-bottom: 12px; }
.article p, .article li { color: #d1d1d6; line-height: 1.6; }
.muted { color: #6e6e7a; font-size: 0.875rem; }
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1c1f26;
  border-top: 1px solid #2c2f38;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #d1d1d6;
  z-index: 1000;
}
#cookie-banner.hidden { display: none; }
#cookie-banner a { text-decoration: underline; }
#cookie-banner a:hover { color: #f5f5f7; }
#cookie-banner button {
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.875rem;
}
#cookie-accept { background: #0a84ff; color: #fff; }
#cookie-decline { background: #3a3a42; color: #f5f5f7; }
