/* Page background: subtle tiled vibe with a simple pattern */
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background:
    repeating-linear-gradient(0deg, #e9ecef 0, #e9ecef 8px, #f5f7f9 8px, #f5f7f9 16px);
  color: #000;
  line-height: 1.35;
}

/* Classic link colors */
a:link    { color: #0000EE; }
a:visited { color: #551A8B; }
a:hover   { color: #FF0000; text-decoration: underline; }
a:active  { color: #FF0000; }

/* Banner */
.page-banner {
  text-align: center;
  padding: 16px 8px;
  background: #c0d0ff;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #4a5a9d;
  border-right: 3px solid #4a5a9d;
  max-width: 860px;
  margin: 12px auto 4px;
}
.page-banner h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 1px;
}
.page-banner .tagline {
  margin: 4px 0 0;
  font-style: italic;
}

/* Counter */
.counter {
  max-width: 860px;
  margin: 0 auto 12px;
  text-align: right;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95rem;
  color: #222;
}
.counter .odometer {
  display: inline-block;
  padding: 2px 6px;
  background: #f2f2f2;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
}

/* Layout table */
.layout {
  border-collapse: separate; /* classic cell gaps */
  border-spacing: 8px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

/* Columns */
.nav-col {
  width: 220px;
}
.content-col {
  width: auto;
}

/* Panels with beveled borders */
.panel {
  background: #fdfdfd;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #777;
  border-right: 3px solid #777;
}
.panel-title {
  font-weight: bold;
  background: #dde6ff;
  margin: -8px -10px 8px -10px;
  padding: 6px 8px;
  border-bottom: 1px solid #aab4d6;
}

/* Nav list */
.nav {
  list-style: square inside;
  margin: 0;
  padding-left: 0;
}
.nav li { margin: 4px 0; }

/* Links list */
.links {
  margin-top: 0;
}

/* Under construction band (pure CSS, no images) */
.under-construction {
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 0;
  background:
    repeating-linear-gradient(
      -45deg,
      #ffef8a 0, #ffef8a 10px,
      #000 10px, #000 20px
    );
  color: #000;
  border: 2px solid #000;
}

/* Image placeholder box */
.img-placeholder {
  width: 100%;
  max-width: 420px;
  height: 260px;
  margin: 4px 0;
  background:
    repeating-conic-gradient(#ddd 0% 25%, #f6f6f6 0% 50%) 50% / 20px 20px;
  display: grid;
  place-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #777;
  border-right: 3px solid #777;
  color: #333;
}

/* Rules */
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #aaa, #ddd, #aaa);
  margin: 12px 0;
}

/* Footer */
.footer {
  max-width: 860px;
  margin: 12px auto 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

/* Small print */
.small {
  font-size: 0.9rem;
}

