/* Global page styling (restored from original inline styles) */
body {
  background-color: #339933;
  color: yellow;
  font-family: 'Comic Sans MS', 'Courier New', monospace;
  font-size: 16px;
  text-align: center;

  /* Layout */
  margin: 0;
  padding-bottom: 40px; /* space for fixed footer */

  /* Existing custom cursor */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none" stroke="black"><rect width="16" height="16" fill="#FFBBCC" stroke="black"/><path d="M0,0 L16,0 L16,16 L0,16 Z" fill-opacity="0"/></svg>') 8 8, auto;
}

h1 {
  text-shadow: 2px 2px #FF0000;
}

/* Link styling (restored) */
a {
  color: #FF9900;
  text-decoration: underline;
}

a:hover {
  color: white;
}

header {
  /* Existing header styles here */
}

button {
  /* Existing button styles here */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="yellow"><polygon points="12 0 15 8 24 9 17 14 20 22 12 17 4 22 7 14 0 9 9 8"/></svg>') 10 10, auto;
}

.link {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="yellow" fill="none"><cross xmlns="http://www.w3.org/2000/svg" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M4 4 L20 20 M4 20 L20 4"/></svg>') 10 10, auto;
}

/* Top navigation bar */
.topbar {
  background-color: #000000;
  padding: 10px;
  border-bottom: 3px dashed yellow;
  text-align: center;
}

.topbar a {
  color: #FF9900;
  margin: 0 15px;
  font-weight: bold;
  text-decoration: none; /* nav links look like buttons */
}

.topbar a:hover {
  color: white;
}

/* Forum post box */
.forum-post {
  background-color: #0000FF;
  border: 2px dashed yellow;
  margin: 15px auto;
  padding: 10px;
  border-radius: 5px;
  max-width: 700px;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #FF9900;
  border-top: 3px dashed yellow;
  padding: 8px;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
