:root {
  --bg: #0a0a0b;
  --text: #ededed;
  --accent: #7dd3c0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 28px;
  font-size: 1.1rem;
}

.page h1 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.page p {
  margin-bottom: 22px;
}

.page p:last-child {
  margin-bottom: 0;
}

.page ul {
  list-style: none;
  margin-bottom: 22px;
}

.page li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.page li:last-child {
  margin-bottom: 0;
}

.page li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 600px) {
  .page {
    font-size: 1.02rem;
  }
}
