body {
  background-color: #000; /* black background */
  background-image: url('../images/background.png'); /* optional: make a grid pattern */
  background-repeat: repeat;
  font-size: 18px;
  font-family: "Jersey 10", "Orbitron", sans-serif;
  color: #c0ffb0; /* light green text */
  margin: 0;
}

/* Headings = neon green Xbox look */
h1, h2, h3, h4, h5, h6 {
  font-family: "Jersey 10", sans-serif;
  color: #00ff00; /* Xbox green */
  text-shadow: 0 0 8px #00ff00;
  text-transform: uppercase;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

p, li {
  line-height: 1.6em;
  color: #c0ffb0;
}

/* Links */
a {
  color: #7fff00;
  text-decoration: none;
}
a:hover {
  color: #00ff00;
  text-shadow: 0 0 6px #00ff00;
}

/* Container with Xbox-style glow */
#container {
  margin: 3em auto;
  width: 90%;
  max-width: 800px;
  background-color: rgba(10, 20, 10, 0.9); /* dark green-black */
  border: 2px solid #00ff00;
  border-radius: 10px;
  box-shadow: 0 0 30px #00ff00 inset, 0 0 20px #003300;
  padding: 20px;
}

/* Header bar like the old Xbox navbar */
#header {
  background: linear-gradient(to bottom, #003300, #001900);
  border-bottom: 3px solid #00ff00;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 15px #00ff00 inset;
}
#header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#header li {
  display: inline-block;
  margin: 0 10px;
}
#header li a {
  color: #00ff00;
  padding: 8px 20px;
  border: 2px solid #00ff00;
  border-radius: 8px;
  background-color: rgba(0, 20, 0, 0.8);
  box-shadow: 0 0 10px #00ff00 inset;
  transition: all 0.2s;
}
#header li a:hover {
  background-color: #003300;
  color: #baffba;
  box-shadow: 0 0 15px #00ff00, inset 0 0 10px #00ff00;
}

/* Footer */
#footer {
  font-size: 0.8em;
  color: #66ff66;
  text-align: center;
  margin-top: 2em;
  padding: 10px;
  border-top: 2px solid #00ff00;
  
  /* Float recent posts to the right like a sidebar */
#recentpostlistdiv {
  float: right;           /* float to the right */
  width: 300px;           /* fixed width for sidebar style */
  margin: 20px;           /* spacing from other content */
  padding: 10px;
  border: 2px solid #00ff00;  /* optional: Xbox-style green border */
  border-radius: 10px;
  background-color: rgba(0, 20, 0, 0.8); /* dark background */
  box-shadow: 0 0 15px #00ff00 inset;   /* Xbox glow */
  color: #c0ffb0;
}

/* Style the list inside recent posts nicely */
#recentpostlistdiv ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#recentpostlistdiv li {
  margin-bottom: 0.5em;
}

#recentpostlistdiv a {
  color: #00ff00;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.2s;
}

#recentpostlistdiv a:hover {
  box-shadow: 0 0 10px #00ff00;
  background-color: #003300;
}

