/* 1998-era Geocities flavor — layout is all <table>, not modern CSS layout */

body {
  margin: 0;
  padding: 12px 0;
  font-family: "Times New Roman", Times, serif;
  background-color: #000033;
  background-image: url("images/bg-stars.gif");
  background-repeat: repeat;
  background-attachment: scroll;
}

table {
  font-family: "Times New Roman", Times, serif;
}

a:link {
  color: #ffff00;
}

a:visited {
  color: #ff00ff;
}

a:active {
  color: #00ffff;
}

marquee {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

img {
  vertical-align: middle;
}

/* Status bar (G3) — sits above footer in the pink strip */
#status-scroller {
  box-sizing: border-box;
  width: 100%;
  min-height: 1.5em;
  margin: 0 auto;
  padding: 4px 6px;
  background-color: #c0c0c0;
  color: #000000;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  border: 1px inset #808080;
}

/* Digital odometer hit counter (JS replaces fallback GIF inside #dade-hit-counter) */
.dade-odometer {
  display: inline-block;
  padding: 4px 8px;
  background-color: #00ff00;
  color: #000000;
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.12em;
  border: 1px inset #003300;
}

/* Cursor trail layer */
#cursor-trail-root {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 9999;
}

.cursor-trail-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.cursor-trail-dot--a {
  background-color: #ff1493;
}

.cursor-trail-dot--b {
  background-color: #00ff00;
}
