@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400&display=swap');

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

body {
  background: #0d0a0f;
  color: #c8c0d8;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  min-height: 100vh;
  padding: 80px 24px;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

.back {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9080c0;
  text-decoration: none;
  border-bottom: 1px solid #2a2035;
  padding-bottom: 2px;
  margin-bottom: 64px;
  transition: color .2s, border-color .2s;
}
.back:hover { color: #a090c0; border-color: #6050a0; }

.rule {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, #a090c0);
  margin: 0 auto 24px;
  display: block;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: #f0e8d8;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9080c0;
  text-align: center;
  margin-bottom: 64px;
}

h2 {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9080c0;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1828;
}

h3 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b0a0c8;
  margin-top: 28px;
  margin-bottom: 10px;
}

p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #c8c0d8;
  margin-bottom: 16px;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

ol { counter-reset: item; }

ol li {
  counter-increment: item;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #c8c0d8;
  padding-left: 28px;
  position: relative;
  margin-bottom: 4px;
}
ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  color: #6050a0;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  top: 4px;
}

ul li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #c8c0d8;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #4a3a6a;
}

a { color: #b0a0d0; text-decoration: none; border-bottom: 1px solid #2a2035; }
a:hover { color: #d8c8f0; border-color: #6050a0; }

.highlight { color: #c8b8e8; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
td {
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #1e1828;
  color: #c8c0d8;
  line-height: 1.6;
}
td:first-child {
  color: #c8b0e8;
  font-family: monospace;
  letter-spacing: 0.08em;
  width: 30%;
  padding-right: 16px;
}
tr:last-child td { border-bottom: none; }

.note {
  font-size: 0.7rem;
  color: #9080c0;
  letter-spacing: 0.06em;
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 16px;
}

.footer, .updated {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #9080c0;
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #1e1828;
}
