@import "https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap";

/* <stdin> */
:root {
  --bg-color: #0a0a0f;
  --panel-bg: #12121a;
  --text-color: #adbac7;
  --neon-blue: #00f0ff;
  --neon-red: #ff0055;
  --neon-yellow: #CFFF04;
  --terminal-green: #39ff14;
  --border-glow: 1px solid #222233;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 0, 255, 0.06));
  z-index: 9999;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}
header {
  background-color: var(--panel-bg);
  border-bottom: 2px solid var(--neon-red);
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.15);
  padding: 0.75rem 1.5rem;
}
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
nav a {
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: all 0.15s ease-in-out;
}
nav a:link,
nav a:visited {
  color: var(--text-color);
  text-shadow: none;
}
nav a:hover {
  color: var(--neon-blue);
  background-color: rgba(0, 240, 255, 0.05);
  border-color: var(--neon-blue);
  text-shadow: 0 0 6px var(--neon-blue);
  text-decoration: none;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--neon-red);
  text-shadow: 0 0 8px var(--neon-red);
}
.container {
  display: grid;
  grid-template-columns: 250px 1fr;
  flex: 1;
}
aside {
  background: var(--panel-bg);
  border-right: var(--border-glow);
  padding: 2rem 1rem;
}
aside h2 {
  font-size: 0.9rem;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
}
aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
aside li {
  margin-bottom: 0.5rem;
}
aside a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem;
  transition: all 0.2s ease;
}
aside a:hover {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.1);
  border-left: 3px solid var(--neon-blue);
  padding-left: 0.6rem;
}
main {
  padding: 2rem;
  overflow-y: auto;
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  border-top: var(--border-glow);
  color: #444466;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.hud-panel {
  background: var(--panel-bg);
  border: var(--border-glow);
  padding: 1.5rem;
  position: relative;
}
.hud-panel::before {
  content: "]";
  position: absolute;
  right: 14px;
  top: 14px;
  color: #444466;
  font-weight: bold;
}
.hud-panel h2 {
  margin-top: 0;
  color: var(--neon-blue);
  font-size: 1.2rem;
  border-bottom: 1px solid #222233;
  padding-bottom: 0.5rem;
  letter-spacing: 1px;
}
.metric {
  font-size: 2rem;
  font-weight: bold;
  color: var(--terminal-green);
  margin: 1rem 0;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}
.log-feed {
  list-style: none;
  padding: 0;
  margin: 0;
}
.log-item {
  border-bottom: 1px dashed #222233;
  padding: 0.75rem 0;
}
.log-item:last-child {
  border-bottom: none;
}
.log-item time {
  color: var(--neon-red);
  font-size: 0.8rem;
}
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  padding-left: 2rem;
}
.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  height: 100%;
  width: 2px;
  background:
    linear-gradient(
      to bottom,
      var(--neon-blue),
      var(--neon-red));
}
.timeline-card {
  position: relative;
  background: var(--panel-bg);
  border: var(--border-glow);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.timeline-card::after {
  content: "";
  position: absolute;
  left: -31px;
  top: 24px;
  width: 10px;
  height: 10px;
  background: var(--bg-color);
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-blue);
}
.timeline-card h2 {
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  font-size: 1.2rem;
}
.timeline-card h2 a {
  color: inherit;
  text-decoration: none;
}
.timeline-card h2 a:hover {
  color: var(--neon-blue);
}
.timeline-card time {
  font-size: 0.8rem;
  color: var(--neon-blue);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
main a:link,
.log-item a:link {
  color: var(--terminal-green);
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0 2px rgba(57, 255, 20, 0.2);
  transition: all 0.15s ease-in-out;
}
main a:visited,
.log-item a:visited {
  color: #a32244;
  font-weight: 600;
  text-shadow: none;
}
main a:hover,
.log-item a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 6px var(--neon-blue);
  text-decoration: underline;
}
.news-article {
  margin: -2rem;
}
.news-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--neon-red);
}
.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 15, 0) 0%,
      rgba(10, 10, 15, 0.4) 50%,
      var(--bg-color) 100%);
  z-index: 1;
}
.news-hero-header {
  position: relative;
  z-index: 2;
  padding: 3rem;
  width: 100%;
}
.news-hero-header h1 {
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  margin: 0.5rem 0 0 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 2px 2px 0px var(--neon-red);
  letter-spacing: -1px;
}
.news-hero-header time {
  color: var(--neon-blue);
  font-weight: bold;
  letter-spacing: 2px;
}
.news-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
}
.news-body img {
  max-width: 100%;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  margin: 2rem 0;
}
.news-standard-header {
  padding: 4rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--neon-red);
  max-width: 800px;
  margin: 0 auto;
}
.meta-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.data-token {
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0.2rem 0.6rem;
  background: rgba(18, 16, 26, 0.8);
  border: 1px solid #222233;
  transition: all 0.2s ease;
}
.data-token:hover {
  background: rgba(255, 255, 255, 0.02);
}
.token-prefix {
  color: #555577;
  margin-right: 0.2rem;
  transition: color 0.15s ease;
}
.data-token.token-location:hover {
  border-color: var(--neon-red);
  box-shadow: 0 0 8px rgba(255, 0, 85, 0.2);
  text-decoration: none;
}
.data-token.token-location:hover .token-prefix {
  color: var(--neon-red);
}
.data-token.token-organization:hover {
  border-color: var(--terminal-green);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
  text-decoration: none;
}
.data-token.token-organization:hover .token-prefix {
  color: var(--terminal-green);
}
.data-token.token-district:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
  text-decoration: none;
}
.data-token.token-district:hover .token-prefix {
  color: var(--neon-blue);
}
.data-token.token-authors:hover {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
  text-decoration: none;
}
.data-token.token-authors:hover .token-prefix {
  color: var(--neon-yellow);
}
.author-stream {
  margin-top: 2rem;
  border-top: 1px dashed var(--border-glow);
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.stream-label {
  color: var(--neon-red);
  font-weight: bold;
  letter-spacing: 1px;
}
.author-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 0;
}
.author-mini-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid var(--terminal-green);
  padding: 1px;
  background: var(--bg-color);
}
.author-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signature-text {
  color: var(--text-color);
}
.signature-text .name {
  color: #ffffff;
}
.signature-text .handle {
  color: var(--terminal-green);
  margin-right: 0.25rem;
}
.signature-text .agency {
  color: #44445c;
  font-size: 0.8rem;
}
.author-signature.anonymous .signature-text {
  color: #555566;
  font-style: italic;
}
