/* 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: #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>');
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
}

#loadScreenInner {
  text-align: center;
  width: 90%;
  max-width: 480px;
  border: 3px solid #FF0000;
  background: #000011;
  padding: 24px 20px;
}

#loadSiteTitle {
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 10px #FF0000, 0 0 30px #880000;
  margin-bottom: 4px;
}

#loadSiteSubtitle {
  font-size: 14px;
  margin-bottom: 4px;
  text-shadow: 0 0 6px #FFFFFF;
}

#loadTitle {
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  color: #FFFF00;
  text-shadow: 0 0 8px #FFFF00;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
  animation: blink-anim 1.2s step-end infinite;
}

#loadBar {
  width: 100%;
  height: 22px;
  border: 2px solid #00FF00;
  background: #001100;
  margin: 0 auto 8px auto;
  box-shadow: 0 0 8px #00FF00;
}

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

#loadPct {
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #00FF00;
  text-shadow: 0 0 6px #00FF00;
  letter-spacing: 3px;
  margin: 0 0 4px 0;
}

#loadSubtext {
  font-family: "Comic Sans MS", cursive;
  font-size: 10px;
  color: #FF00FF;
  letter-spacing: 0px;
  margin: 0;
}

/* ===================== */
/* 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;
}

/* ===================== */
/* WMP MEDIA PLAYER      */
/* ===================== */

.wmp-player {
  background: #111122;
  border: 2px solid #555577;
  border-top-color: #9999bb;
  border-left-color: #9999bb;
  font-family: "Tahoma", "Arial", sans-serif;
  margin-bottom: 0;
  user-select: none;
}

.wmp-titlebar {
  background: linear-gradient(to right, #00007a, #0033aa, #00007a);
  padding: 3px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.wmp-titlebar-left {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  flex: 1;
}

.wmp-titlebar-icon {
  color: #aabbff;
  font-size: 9px;
  flex-shrink: 0;
}

.wmp-titlebar-text {
  color: #ffffff;
  font-size: 10px;
  font-family: "Tahoma", "Arial", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wmp-titlebar-btns {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.wmp-tbtn {
  background: linear-gradient(to bottom, #4455aa, #223388);
  border: 1px solid #7788cc;
  color: #ccddff;
  font-size: 8px;
  width: 14px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  line-height: 1;
}

.wmp-tbtn-close { background: linear-gradient(to bottom, #aa3344, #882233); }

.wmp-video-area {
  background: #000000;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wmp-video-area iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.wmp-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #0a0a1a 0%, #000000 100%);
}

.wmp-play-btn {
  width: 44px;
  height: 44px;
  background: linear-gradient(to bottom, #3355aa, #112266);
  border: 2px solid #6688cc;
  border-top-color: #aabbee;
  border-left-color: #aabbee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.1s;
}

.wmp-play-btn:hover {
  background: linear-gradient(to bottom, #4466cc, #223388);
}

.wmp-play-btn span {
  color: #aaccff;
  font-size: 18px;
  margin-left: 3px;
  line-height: 1;
}

.wmp-coming-soon-icon {
  color: #334466;
  font-size: 36px;
  margin-bottom: 8px;
  animation: wmp-pulse 2s ease-in-out infinite;
}

@keyframes wmp-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.wmp-click-label {
  font-family: "Tahoma", Arial, sans-serif;
  font-size: 10px;
  color: #4466aa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wmp-soon-label {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #334455;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wmp-infobar {
  background: #0a0a18;
  border-top: 1px solid #222244;
  padding: 3px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wmp-nowplaying {
  font-family: "Tahoma", Arial, sans-serif;
  font-size: 10px;
  color: #6688bb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wmp-progress-wrap {
  background: #0a0a18;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wmp-progress-track {
  flex: 1;
  height: 8px;
  background: #000011;
  border: 1px solid #222244;
  border-top-color: #000;
  border-left-color: #000;
  position: relative;
  overflow: visible;
}

.wmp-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #003399, #0055cc);
}

.wmp-progress-knob {
  position: absolute;
  top: -3px;
  left: 0%;
  width: 8px;
  height: 14px;
  background: linear-gradient(to bottom, #aabbdd, #6688aa);
  border: 1px solid #334466;
  cursor: default;
}

.wmp-time {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #445566;
  white-space: nowrap;
  flex-shrink: 0;
}

.wmp-controls {
  background: linear-gradient(to bottom, #151528, #0d0d1e);
  padding: 4px 8px 5px;
  border-top: 1px solid #222244;
}

.wmp-buttons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.wmp-btn {
  background: linear-gradient(to bottom, #252540, #181830);
  border: 1px solid #334466;
  border-top-color: #445577;
  border-left-color: #445577;
  color: #7788bb;
  font-size: 8px;
  padding: 2px 5px;
  cursor: default;
  min-width: 18px;
  text-align: center;
  font-family: "Tahoma", Arial, sans-serif;
  line-height: 1.4;
}

.wmp-btn:active {
  border-top-color: #334466;
  border-left-color: #334466;
  border-right-color: #445577;
  border-bottom-color: #445577;
}

.wmp-vol-bar {
  flex: 0 0 40px;
  height: 6px;
  background: #000011;
  border: 1px solid #222244;
  border-top-color: #000;
  position: relative;
  margin-left: 2px;
}

.wmp-vol-fill {
  height: 100%;
  width: 70%;
  background: linear-gradient(to right, #003399, #0055cc);
}

.wmp-status-bar {
  background: #080814;
  border-top: 1px solid #181830;
  padding: 2px 8px;
  display: flex;
  justify-content: space-between;
}

.wmp-status-bar span {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #334455;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wmp-status-bar .wmp-ready {
  color: #224433;
  flex-shrink: 0;
  margin-left: 8px;
}

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

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