:root {
  --bg: #0A0D15;
  --card: #14181F;
  --text: #E8E0D4;
  --dim: #9A9089;
  --gold: #D4A843;
  --border: rgba(255,255,255,0.06);
  --red: #C0392B;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding: 0 20px;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.logo {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.updated {
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 40px;
}
.subtitle {
  color: var(--dim);
  font-size: 16px;
  margin-bottom: 40px;
}
h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
h2:first-of-type { border-top: none; margin-top: 0; }
p, li {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 12px;
}
ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
li { margin-bottom: 6px; }
strong { color: #fff; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.card p:last-child { margin-bottom: 0; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
th {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 12px 0;
}
.faq-item h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-item p { margin-bottom: 0; font-size: 14px; }
.contact-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 8px;
}
.contact-btn:hover { opacity: 0.9; text-decoration: none; }
.delete-section {
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.delete-section h3 {
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.delete-section p { font-size: 14px; }
.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 13px;
}
.footer a { color: var(--dim); }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--dim);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
[data-lang]:not(.active) { display: none !important; }
