*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0a09;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 80px;
}
.card {
  width: 100%;
  max-width: 680px;
  background: #1f1d17;
  border-radius: 16px;
  padding: 36px 32px;
}
@media (min-width: 900px) {
  .card { max-width: 900px; }
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #7B5CD4;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
  text-decoration: none;
  display: block;
}
.updated {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
h2 {
  font-size: 16px;
  font-weight: 600;
  color: #7B5CD4;
  margin-top: 32px;
  margin-bottom: 10px;
}
h3 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  margin-bottom: 6px;
}
p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(123,92,212,0.6);
}
a { color: #7B5CD4; text-decoration: none; }
a:hover { text-decoration: underline; }
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0;
}
.divider--spaced { margin-top: 40px; }
.lang-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.lang-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
}
.lang-nav a.active {
  color: #7B5CD4;
  border-color: rgba(123,92,212,0.4);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 13px;
}
th {
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
td {
  padding: 8px 10px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.footer {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }
