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

:root {
  --bg:       #1B1916;
  --bg2:      #252220;
  --text:     #EAEAEC;
  --text2:    #8E8E93;
  --accent:   #BA8568;
  --link:     #D4A080;
  --border:   #3B3937;
  --radius:   10px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding: 0 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

header {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent);
}

header .subtitle {
  font-size: 1rem;
  color: var(--text2);
}

main {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

section h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

section p {
  color: var(--text2);
  margin-bottom: 0.75rem;
}
section p:last-child {
  margin-bottom: 0;
}

.prose h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 1.75rem 0 0.75rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  color: var(--text2);
  margin-bottom: 0.75rem;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  color: var(--text2);
}
.prose li {
  margin-bottom: 0.25rem;
}
.prose .meta {
  font-size: 0.875rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
}

.notice {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  background: rgba(186, 133, 104, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text2);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
.footer-links a {
  color: var(--text2);
}
.footer-links a:hover {
  color: var(--link);
}

@media (max-width: 480px) {
  header h1 { font-size: 1.6rem; }
  section { padding: 1.25rem; }
  .logo-wrap { flex-direction: column; gap: 0.5rem; }
}
