* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0d0d12;
  color: #f2f2f7;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #2a2a33;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #f2f2f7;
  text-decoration: none;
}

header .brand .logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F2A7C3, #C9B8E8);
}

nav a {
  color: #C9B8E8;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

h2 {
  font-size: 19px;
  margin-top: 36px;
  margin-bottom: 8px;
  color: #F2A7C3;
}

p, li {
  font-size: 15px;
  color: #d6d6df;
}

.updated {
  font-size: 13px;
  color: #8a8a96;
  margin-bottom: 32px;
}

a {
  color: #C9B8E8;
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #8a8a96;
  border-top: 1px solid #2a2a33;
}

.hero {
  text-align: center;
  padding: 60px 24px;
}

.hero .logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #F2A7C3, #C9B8E8);
  margin: 0 auto 16px;
}

.hero h1 {
  font-size: 32px;
}

.hero p {
  color: #aeaeb8;
  font-size: 16px;
  max-width: 480px;
  margin: 12px auto 0;
}

.links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.links a {
  padding: 10px 20px;
  border: 1px solid #2a2a33;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

.links a:hover {
  border-color: #C9B8E8;
}
