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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #FBF6EE;
  color: #2D2A26;
  line-height: 1.7;
  font-size: 16px;
}

header {
  background: #FBF6EE;
  border-bottom: 1px solid #E8DFD0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}

header img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

header span {
  font-weight: 700;
  font-size: 18px;
  color: #2D2A26;
  letter-spacing: -0.3px;
}

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

.lang-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.lang-switcher a {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #C17E3C;
  color: #C17E3C;
  transition: all 0.15s;
}

.lang-switcher a.active {
  background: #C17E3C;
  color: #fff;
}

h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1A1714;
  margin-bottom: 8px;
  line-height: 1.2;
}

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

h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1714;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #E8DFD0;
}

h3 {
  font-size: 15px;
  font-weight: 600;
  color: #2D2A26;
  margin-top: 24px;
  margin-bottom: 8px;
}

p { margin-bottom: 14px; }

ul, ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

li { margin-bottom: 6px; }

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

strong { font-weight: 600; color: #1A1714; }

hr {
  border: none;
  border-top: 1px solid #E8DFD0;
  margin: 32px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 20px;
  overflow-x: auto;
  display: block;
}

th {
  background: #F0E9DE;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: #5C4A32;
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid #E8DFD0;
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }

footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  color: #8B7355;
  border-top: 1px solid #E8DFD0;
}

@media (max-width: 600px) {
  main { padding: 32px 16px 60px; }
  h1 { font-size: 22px; }
  h2 { font-size: 16px; }
}
