/* --- 1. Сброс и база --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-body: #121212;
  --bg-panel: #1e1e1e;
  --text-main: #e0e0e0;
  --text-muted: #aaaaaa;
  --accent: #bb0000;
  --border: #333333;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* --- 2. Типографика --- */
h1, h2, h3, h4, h5, h6 {
  color: white;
  margin-bottom: 12px;
}

p, li {
  margin-bottom: 8px;
}

a {
  color: #64b5f6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #90caf9;
}

/* --- 3. Контейнеры и сетка форума --- */
.forum-wrapper, .container, #content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.topic-list, .post-list {
  list-style: none;
}

/* --- 4. Блоки тем и постов --- */
.topic, .post, .message-box {
  background-color: var(--bg-panel);
  border: 1px solid
