/* BODY AND FONTS */ 
body {
  background: url('stars1.gif') repeat;
  font-family: 'Pixelify Sans', Lato, Calibri, Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000; /* default font color */
  letter-spacing: 1px;
  line-height: 1.4em;
  margin: 0;
  padding: 0;
  cursor: url('11.cur'), auto; /* ✅ custom cursor */
}

/* HEADER */
#header {
  width: 600px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: #2F498C;
  background: #D4D0C8;
  border: 2px solid #666;
  border-color: #666 #aaa #928F88 #666;
  border-radius: 10px 10px 0 0;
  margin: 20px auto 0 auto;
}

/* SITE URL */
.siteurl {
  width: 600px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  background: #D4D0C8;
  border: 2px solid #666;
  border-color: #666 #aaa #928F88 #666;
  margin: 0 auto;
  color: #000;
  letter-spacing: 2px;
}

/* NAVIGATION */
#navigation {
  width: 608px;
  background: #DDDAD3;
  margin: 0 auto;
  padding: 5px 0;
  text-align: center;
}

.navi {
  display: inline-block;
  font: 9px Arial Black, Calibri;
  text-transform: uppercase;
  background: #D4D0C8;
  color: #2F498C; /* top links blue */
  text-align: center;
  min-width: 80px;
  padding: 5px;
  margin: 0 4px 4px 0;
  border: 2px solid #666;
  border-color: #666 #aaa #928F88 #666;
  text-decoration: none;
  cursor: pointer; /* ✅ ensures pointer on hover */
}

.navi:hover {
  color: #444;
}

/* LAYOUT WRAPPER */
.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
}

/* LEFT COLUMN */
#left {
  width: 190px;
}

#left .title {
  font: 9px Arial Black, Calibri;
  text-transform: uppercase;
  color: #FFF;
  background: #E3F4E2 url('https://64.media.tumblr.com/24edcf69b43d44676493a5b517aa225e/9aa6415c11a612ea-90/s640x960/e6ee5ec70e3166f12308004fc1b3c5b742dc8e0e.pnj');
  letter-spacing: 3px;
  padding-left: 4px;
  padding-top: 2px;
  border-bottom: 1px solid #fff;
}

#left .box {
  background: #D4D0C8;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-top: 2px solid #666;
  border-bottom: 2px solid #928F88;
  padding: 4px;
  margin-bottom: 4px;
  color: #000;
}

/* CONTENT COLUMN */
#content {
  width: 415px;
}

#content .title {
  font: 9px Arial Black, Calibri;
  text-transform: uppercase;
  color: #FFF;
  background: #E3F4E2 url('https://64.media.tumblr.com/24edcf69b43d44676493a5b517aa225e/9aa6415c11a612ea-90/s640x960/e6ee5ec70e3166f12308004fc1b3c5b742dc8e0e.pnj');
  letter-spacing: 3px;
  padding-left: 4px;
  padding-top: 2px;
  border-bottom: 1px solid #fff;
}

#content .box {
  background: #D4D0C8;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-top: 2px solid #666;
  border-bottom: 2px solid #928F88;
  padding: 4px;
  margin-bottom: 4px;
  color: #000;
}

/* FOOTER / LAYOUT CREDIT */
#content .box center a {
  color: #2F498C; /* "Itinerae" link blue */
  text-decoration: none;
}

#content .box center {
  color: #fff; /* footer text white */
}

/* CORNER ADS */
.corner-ad-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
}

.corner-ad-stack.left {
  position: fixed;
  top: 10px;
  left: 10px;
}

.corner-ad-stack.right {
  position: fixed;
  top: 10px;
  right: 10px;
}

.corner-ad-stack img {
  width: 100px;
  height: auto;
  display: block;
}


