:root {
  --bg: #000000;
  --paper: #0a0a0a;
  --panel: #111111;
  --panel-strong: #1a1a1a;
  --fg: #f5f5f5;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #ffffff;
  --accent-2: #9a9a9a;
  --ink: #f5f5f5;
  --terminal: #0d0d0d;
  --terminal-fg: #e8e8e8;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--fg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.06), transparent 32rem),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--fg);
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.topnav a {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: "Aptos", "Segoe UI", sans-serif;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.btn,
button.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #000000;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.btn.small{padding:6px 8px;font-size:14px}
.btn.secondary{color:var(--fg);background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.34);}

input, textarea, select {
  color: var(--fg);
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.container{width:min(1120px,calc(100% - 36px));margin:0 auto;padding:10px 0 54px}

.muted{color:var(--muted)}

.discussion-wrap{max-width:900px;margin:28px auto;padding:18px}
.user-row{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.post{border:1px solid var(--line);padding:12px;margin-bottom:12px;border-radius:6px;background:rgba(255,255,255,0.03)}
.post .meta{font-size:13px;color:var(--muted);margin-bottom:8px}
.controls button{margin-right:6px}
.new-post{margin-bottom:18px}
</content>
