:root {
  --bg: #071820;
  --card-bg: #0d222d;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --primary: #25d366;
  --primary-dark: #075e54;
  --border: #1e3a47;
  --font: 'Figtree', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 800px;
  width: 100%;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

p, ul {
  margin-bottom: 1rem;
  color: var(--text);
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.4rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 2rem 0 1rem 0;
}
