/* === Camo Background === */
body {
  background: url("https://imgur.com/a/bosWOhq") repeat;
  background-size: cover;         /* makes the image fill the screen */
  background-attachment: fixed;   /* keeps it static while scrolling */
  background-position: center;    /* centers the background */
  margin: 0;
  padding: 0;
}

/* === Content Overlay for Readability === */
.main-content, 
.forum-container, 
.page-content {
  background: rgba(0, 0, 0, 0.65);  /* dark overlay for readability */
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}