/* TRUE HISTORY - Outside the Echo Chamber */
/* Official Website Stylesheet */
/* Last updated: April 2026 */
/* Designed by K. Dragon using Microsoft FrontPage */

body {
  background-color: #000033;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect width="4" height="4" fill="%23000033"/><rect width="1" height="1" fill="%23000055" opacity="0.3"/></svg>');
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", "Times New Roman", serif;
  cursor: crosshair;
}

/* ===================== */
/* LOADING SCREEN        */
/* ===================== */

#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
}

#loadBar {
  width: 300px;
  height: 24px;
  border: 2px solid #00FF00;
  background: #001100;
  margin: 10px auto;
}

#loadBarInner {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #003300, #00FF00);
  transition: none;
}

/* ===================== */
/* LOGO                  */
/* ===================== */

#siteLogo {
  max-width: 600px;
  width: 90%;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 20px #4444FF) drop-shadow(0 0 40px #0000AA);
}

/* ===================== */
/* NAVIGATION            */
/* ===================== */

a.navlink {
  display: inline-block;
  font-family: "Arial Black", "Impact", sans-serif;
  font-size: 11px;
  color: #FF00FF;
  text-decoration: none;
  padding: 6px 10px;
  background-color: #1a001a;
  letter-spacing: 1px;
}

a.navlink:hover {
  color: #FFFF00;
  background-color: #330033;
  text-decoration: underline;
}

a.navlink:visited {
  color: #CC00CC;
}

/* ===================== */
/* SIDEBAR               */
/* ===================== */

.sideBox {
  border: 2px solid #440044;
  background-color: #060010;
  padding: 8px;
  margin-bottom: 4px;
}

.sideBoxTitle {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 10px;
  color: #FF00FF;
  background-color: #220022;
  padding: 4px 6px;
  margin: -8px -8px 8px -8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #440044;
}

a.sideLink {
  display: block;
  font-family: Verdana, sans-serif;
  font-size: 11px;
  color: #CC88CC;
  text-decoration: none;
  padding: 2px 0;
  line-height: 1.8;
}

a.sideLink:hover {
  color: #FF00FF;
  text-decoration: underline;
}

/* ===================== */
/* STORY CHAPTERS        */
/* ===================== */

.storyChapter {
  border-left: 4px solid #00FFFF;
  padding-left: 16px;
  margin-bottom: 20px;
}

/* ===================== */
/* CREW CARDS            */
/* ===================== */

.crewCard {
  margin-bottom: 0;
}

.crewPhotoPlaceholder {
  width: 80px;
  height: 80px;
  border: 3px solid #888888;
  background: #111111;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 80px;
  text-align: center;
}

/* ===================== */
/* BLINKING EFFECTS      */
/* ===================== */

blink {
  animation: blink-anim 1s step-end infinite;
}

@keyframes blink-anim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink2 {
  animation: blink-anim 0.7s step-end infinite;
  color: #FF0000;
  font-family: "Comic Sans MS", cursive;
  font-size: 10px;
}

/* ===================== */
/* CONSTRUCTION STRIPES  */
/* ===================== */

.constructionStripes {
  height: 16px;
  background: repeating-linear-gradient(
    45deg,
    #FFFF00,
    #FFFF00 6px,
    #000000 6px,
    #000000 12px
  );
  margin: 8px 0;
  border: 1px solid #888800;
}

/* ===================== */
/* SCROLLBAR             */
/* ===================== */

::-webkit-scrollbar {
  width: 16px;
  background: #000033;
}

::-webkit-scrollbar-track {
  background: #000022;
  border: 1px solid #220022;
}

::-webkit-scrollbar-thumb {
  background: #440044;
  border: 1px solid #FF00FF;
}

::-webkit-scrollbar-thumb:hover {
  background: #660066;
}

/* ===================== */
/* STAR DECORATIONS      */
/* ===================== */

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.star {
  display: inline-block;
  color: #FFFF00;
  animation: twinkle 2s ease-in-out infinite;
}

/* ===================== */
/* GENERAL LINKS         */
/* ===================== */

a {
  color: #FF00FF;
}

a:visited {
  color: #AA00AA;
}

a:hover {
  color: #FFFF00;
}

/* ===================== */
/* SECTION DIVIDERS      */
/* ===================== */

hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #FF00FF, transparent);
}

/* ===================== */
/* VISITOR COUNTER GLOW  */
/* ===================== */

#visitorCount {
  text-shadow: 0 0 8px #00FF00, 0 0 16px #00FF00;
  letter-spacing: 4px;
}

/* ===================== */
/* SECTION HEADINGS GLOW */
/* ===================== */

font[color="#FF0000"] > b,
font[color="#00FFFF"],
font[color="#FF9900"],
font[color="#FF00FF"],
font[color="#00FF00"] {
  text-shadow: 0 0 6px currentColor;
}

/* ===================== */
/* MISMATCHED FONTS      */
/* (period accurate!)    */
/* ===================== */

p {
  font-family: "Verdana", "Comic Sans MS", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

table {
  border-collapse: collapse;
}

input[type="text"], textarea {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

input[type="button"] {
  font-size: 11px;
}

/* marquee is styled inline for period accuracy */

/* ===================== */
/* VIDEO PLACEHOLDERS    */
/* ===================== */

.videoPlaceholder {
  width: 100%;
  height: 195px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  cursor: pointer;
  position: relative;
}

.videoPlaceholder:hover {
  background: #0a0a0a;
}

.videoPlaceholder:hover .vpInner {
  opacity: 0.7;
}

.vpInner {
  text-align: center;
  line-height: 1.8;
}

.videoSlot iframe {
  display: block;
  width: 100%;
  height: 195px;
  border: none;
}

/* ===================== */
/* BACKSTORY TIMELINE    */
/* ===================== */

.storyChapter {
  border-left: 4px solid #00FFFF;
  padding-left: 16px;
  margin-bottom: 20px;
}
