
/* page background: subtle tiled texture feel using repeating linear gradient */
body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  color: #e9e3d6;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.4;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.02), transparent 15%);
  background-size: 18px 18px, 400px 400px;
}

/* old-centered fixed-width layout using a table-like container */
#wrapper {
  width: 780px;
  margin: 28px auto;
  border: 6px solid #2b170f;
  background: linear-gradient(#0e0b09, #120f0d);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,255,255,0.02);
  padding: 12px;
}

/* header: gothic-ish */
.header {
  text-align: center;
  padding: 12px 6px;
  border-bottom: 2px dashed #2b170f;
}
.site-title {
  font-size: 36px;
  letter-spacing: 2px;
  color: #f3efe6;
  margin: 0;
  text-shadow: 0 2px 0 #000, 0 0 8px rgba(150,0,0,0.2);
  font-weight: bold;
}

/* nav looks like old image-map nav */
nav {
  margin-top: 6px;
  font-size: 14px;
}
nav a {
  color: #e9e3d6;
  text-decoration: none;
  border: 1px solid #2f1a13;
  background: linear-gradient(#1b1110, #271818);
  padding: 6px 12px;
  margin: 0 4px;
  display: inline-block;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}
nav a:hover {
  background: linear-gradient(#2a1515, #3a1b1b);
  color: #fff2f2;
}

/* two-column layout: left content, right sidebar */
.content {
  display: table;
  width: 100%;
  margin-top: 12px;
}
.col-left, .col-right {
  display: table-cell;
  vertical-align: top;
  padding: 12px;
}
.col-left {
  width: 62%;
  border-right: 1px dotted rgba(255,255,255,0.03);
}
.col-right {
  width: 38%;
}

/* creepy intro box */
.intro {
  background: rgba(7,7,7,0.6);
  border: 1px solid #2b1916;
  padding: 12px;
  color: #d8cec0;
  font-style: italic;
  height: 220px;
  overflow: auto;
}

/* fake web-2005 marquee-ish effect using small animation for the symbol */
.symbol {
  font-size: 64px;
  color: #b20f0f;
  line-height: 1;
  letter-spacing: -4px;
  margin: 8px auto;
  width: 100%;
  text-align: center;
  text-shadow: 0 0 8px rgba(178,15,15,0.6);
}

/* login box — intentionally simple and boxy */
.login-box {
  background: repeating-linear-gradient(45deg, rgba(20,15,15,0.6) 0 6px, rgba(0,0,0,0.4) 6px 12px);
  border: 2px solid #3b1515;
  padding: 14px;
  margin: 6px;
  color: #f0e9df;
}
.login-box h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: 1px;
}
.login-box label {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}
.login-box input[type="text"],
.login-box input[type="password"],
.login-box input[type="email"] {
  width: 86%;
  padding: 6px;
  border: 1px solid #4d2a2a;
  background: #0f0b0b;
  color: #efe7da;
  margin-top: 4px;
  font-family: inherit;
}
.login-actions {
  margin-top: 10px;
}
.btn {
  background: linear-gradient(#401414, #7b1515);
  color: #fff2f2;
  border: 1px solid #2b0c0c;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
}
.btn:active { transform: translateY(1px); }

/* tiny footer & vintage credit */
.footer {
  margin-top: 14px;
  font-size: 12px;
  color: #bfb4a7;
  border-top: 1px dashed rgba(255,255,255,0.03);
  padding-top: 8px;
}

/* old-school modal for 'forgot password' */
#overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
}
#modal {
  width: 420px;
  margin: 8% auto;
  background: #141010;
  border: 3px solid #3b1212;
  padding: 14px;
  color: #efe7da;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* tiny "glitchy" red underline for headings */
h2.glitch {
  color: #f8efe6;
  font-size: 20px;
  position: relative;
  display: inline-block;
}
h2.glitch:after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(178,15,15,0.9), rgba(0,0,0,0));
  opacity: 0.9;
}
small.legend { color: #b7a99b; }

/* intentionally pixel-y borders for 2005 look on images (if any) */
img {
  border: 2px solid #2b1714;
}

/* tiny responsive fallback */
@media (max-width: 820px){
  #wrapper { width: 96%; }
  .content { display: block; }
  .col-left, .col-right { display: block; width: auto; }
  .col-right { margin-top: 10px; }
}