* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1115;
  color: #eaeaea;
}

header {
  padding: 20px;
  text-align: center;
  background: #151922;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

/* ===== FORUM ===== */

.forum-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

/* CREATE */

.forum-create {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.forum-create input {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #1c2230;
  color: #eaeaea;
}

.forum-create button {
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  background: #1c2230;
  color: #eaeaea;
  opacity: 0.6;
  cursor: not-allowed;
}

/* LIST */

.forum-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* POST */

.forum-post {
  background: #1c2230;
  border-radius: 18px;
  padding: 25px;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: not-allowed;
}

.forum-post:hover {
  transform: translateY(-4px);
  background: #232a3b;
}

.post-title {
  font-size: 17px;
  margin-bottom: 10px;
}

.post-preview {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 14px;
}

.post-meta {
  font-size: 12px;
  opacity: 0.5;
  display: flex;
  gap: 10px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  opacity: 0.6;
}