:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --text: #2D2419;
  --text-muted: #6B6157;
  --border: #E8E2DA;
  --primary: #F97316;
  --primary-text: #FFFFFF;
  --radius: 16px;
  --max-width: 760px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 64px;
}
.header {
  text-align: center;
  padding: 40px 0 24px;
}
.header h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.header .subtitle {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.lang-switch a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.lang-switch a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-text);
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 6px;
}
.card p, .card li {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}
.card ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.card strong {
  color: var(--text);
  font-weight: 700;
}
.updated {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.footer {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer a {
  color: var(--text-muted);
  text-decoration: underline;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.links a {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.links a h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}
.links a p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}
