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

body {
  color: #ccc;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

nav {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

nav a { color: #888; text-decoration: none; font-size: 13px; }
nav a:hover { color: #fff; }

.container {
  margin: 0 auto;
  padding: 60px 24px 80px;
}

h1 { color: #fff; }
h2 { color: #fff; margin-top: 32px; margin-bottom: 12px; }
p { margin-bottom: 16px; }
ul { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 8px; }

a { color: #FFD700; text-decoration: none; }
a:hover { text-decoration: underline; }

footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

footer a { color: #555; margin: 0 12px; }
