
.declassified-page::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('https://thebalafiles.com/assets/images/bureau_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 400px;
  height: 400px;
  opacity: 0.07;
  filter: drop-shadow(0 0 10px #33ffff55) drop-shadow(0 0 25px #ff66cc33);
  z-index: 0;
  pointer-events: none;
  animation: logoPulse 5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px #33ffff55) drop-shadow(0 0 25px #ff66cc33);
    opacity: 0.07;
  }
  50% {
    filter: drop-shadow(0 0 14px #33ffffaa) drop-shadow(0 0 32px #ff66cc88);
    opacity: 0.15;
  }
}



body {
  background-color: #000000;
  color: #bf00ff; 
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  padding: 2em;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 2px #bf00ff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Share Tech Mono', monospace;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bf00ff;
  text-shadow:
    0 0 2px #bf00ff,
    0 0 4px #bf00ff,
    0 0 6px #bf00ff,
    0 0 10px #bf00ff,
    0 0 16px #bf00ff;
  margin-bottom: 1em;
}

h1 { font-size: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }

p {
  font-size: 1.2em;
  color: #bf00ff;
  text-shadow: 0 0 4px #bf00ff;
  margin-bottom: 2em;
  line-height: 1.6em;
}

.section-header {
  font-size: 2em;
  margin-top: 5em;
  margin-bottom: 1em;
  color: #bf00ff;
  text-shadow: 0 0 8px #bf00ff, 0 0 16px #bf00ff;
}

.section-label {
  color: #bf00ff;
  font-size: 0.9em;
  margin-top: 2em;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  text-shadow: 0 0 4px #bf00ff;
  font-style: italic;
}

.system-alert {
  margin-top: 2.1em;
  font-size: 1.2em;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  color: #bf00ff;
  text-shadow: 0 0 6px #bf00ff, 0 0 12px #bf00ff;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-transform: uppercase;
  white-space: pre-line;
}

.system-status {
  font-size: 0.8em;
  color: #bf00ff;
  text-shadow: 0 0 4px #bf00ff;
  margin-top: 1em;
}

.public-safety-log {
  background-color: #000000;
  border: 3px solid #bf00ff40;
  padding: 2em;
  margin: 4em auto;
  max-width: 1200px;
  box-shadow: 0 0 12px #bf00ff30;
  font-family: 'Share Tech Mono', monospace;
  color: #bf00ff;
  text-align: left;
}

.public-safety-log h2 {
  color: #bf00ff;
  text-shadow: 0 0 6px #bf00ff, 0 0 12px #bf00ff;
  margin-bottom: 1em;
  font-size: 1.6em;
  text-transform: uppercase;
}

.safety-bulletin {
  list-style-type: square;
  padding-left: 1.5em;
}

.safety-bulletin li {
  margin-bottom: 1em;
  text-shadow: 0 0 3px #bf00ff;
  font-size: 0.95em;
  color: #bf00ff;
}

.notice-text {
  color: #bf00ff;
  text-shadow: 0 0 3px #bf00ff;
}


.neon-line {
  border: none;
  height: 3px;
  margin: 2em auto;
  width: 90%;
  background: linear-gradient(90deg, #ff69b4, #ff00ff, #ff69b4);
  box-shadow: 0 0 8px #ff69b4, 0 0 16px #ff00ff, 0 0 24px #ff69b4;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2em;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 1em;
  color: #bf00ff;
  text-shadow: 0 0 6px #bf00ff, 0 0 12px #bf00ff;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}




.button-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8em;
  margin-top: 2em;
  margin-bottom: 4em;
  transition: transform 0.3s ease;
}

.small-button {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1em;
  padding: 0.9em 1.4em;
  color: #33ffff;
  border: 2px solid #33ffff;
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  text-shadow:
    0 0 3px #33ffff,
    0 0 6px #33ffff;
  box-shadow:
    0 0 6px #33ffff66,
    0 0 12px #33ffff33;
  transition: all 0.2s ease;
  animation: sidePulse 3s ease-in-out infinite;
}

.small-button:hover {
  box-shadow:
    0 0 8px #33ffffaa,
    0 0 16px #33ffff88,
    inset 0 0 6px #33ffff55;
  transform: scale(1.03);
}

.small-button:active {
  transform: scale(0.97);
  box-shadow:
    inset 0 0 10px #33ffffaa,
    inset 0 0 20px #33ffff66;
}

@keyframes sidePulse {
  0%, 100% {
    box-shadow: 0 0 6px #33ffff66, 0 0 12px #33ffff33;
  }
  50% {
    box-shadow: 0 0 10px #33ffffaa, 0 0 20px #33ffff55;
  }
}




a:active {
  background-color: rgba(0, 0, 0, 0.4);
  color: #33ffff;
  border-color: #33ffff;
  text-shadow: 0 0 4px #33ffff;
  box-shadow:
    inset 0 0 10px #33ffffaa,
    inset 0 0 20px #33ffff66;
  transform: scale(0.98);
}


a:visited {
  color: #33ffff;
  background-color: transparent;
  border-color: #33ffff;
  text-shadow: 0 0 4px #33ffff;
  box-shadow: none;
}


a:hover {
  background-color: transparent;
  color: #33ffff;
  border-color: #33ffff;
  text-shadow: 0 0 4px #33ffff;
  box-shadow: inset 0 0 6px #33ffffaa, inset 0 0 12px #33ffff88;
  transform: scale(1.05);
}



@keyframes pulseGlow {
  0% { box-shadow: 0 0 6px #bf00ff40; }
  50% { box-shadow: 0 0 12px #bf00ff80; }
  100% { box-shadow: 0 0 6px #bf00ff40; }
}


.glow-stamp {
  font-family: 'Share Tech Mono', monospace;
  color: #ff33cc;
  font-size: 1.2em;
  border: 2px solid #ff33cc;
  padding: 0.5em 1em;
  display: inline-block;
  margin: 1em auto;
  background-color: rgba(0, 0, 0, 0.75);
  text-shadow:
    0 0 4px #ff33cc,
    0 0 8px #ff66ff,
    0 0 12px #ff66ff;
  transform: rotate(-1.5deg);
  box-shadow: 0 0 10px #ff33cc40;
  animation: stampIn 1s ease-out forwards;
  opacity: 0;
}


@keyframes stampIn {
  0% {
    opacity: 0;
    transform: scale(1.5) rotate(-5deg);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(-2deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-1.5deg);
    filter: blur(0);
  }
}


.map-wrap {
  position: relative;
  display: inline-block;
  width: 40%;
  max-width: 400px;
  margin: 2em auto;
  box-shadow: 0 10px 30px #00000080;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: 0 0 20px #ff66cc40;
}

.map-glow {
  position: relative;
  display: inline-block;
  margin: 2em auto;
  padding: 1em;
  background-color: #000;
  box-shadow:
    0 0 40px #00ffff88,
    0 0 80px #00ffff44,
    0 0 120px #00ffff22;
  border-radius: 4px;
}

.map-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  margin: 3em auto;
  max-width: 1000px;
}

.map-description {
  max-width: 400px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1em;
  color: #33ffff;
  text-shadow: 0 0 4px #00ffff;
  line-height: 1.6;
}

.map-stamp {
  position: absolute;
  bottom: 8%;
  right: 5%;
  transform: rotate(-2deg);
  font-size: 0.9em;
}

.center-strip {
  position: absolute;
  top: -66px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 80px;
  pointer-events: none;
}


.zone-link {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 0.65em;
  max-width: 80px;
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 5px;
  color: #33ffff; 
  font-family: 'Share Tech Mono', monospace;
  background-color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  text-align: center;
  text-shadow: 0 0 2px #33ffff, 0 0 4px #33ffff;
  z-index: 5;
  transition: transform 0.2s, text-shadow 0.3s;
}

.zone-link:hover {
  text-shadow: 0 0 6px #33ffff, 0 0 10px #33ffff;
  transform: scale(1.05);
}




@media (max-width: 600px) {
  .small-button {
    width: 90%;
    height: 55px;
    font-size: 1.1em;
    line-height: 55px;
  }
}


table {
  width: 90%;
  margin: 2em auto;
  border-collapse: collapse;
  background-color: #000000;
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #ccccff;
}

th, td {
  border: 1px solid #333366;
  padding: 0.8em 1em;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: break-word;
}

th {
  min-width: 200px;
  white-space: nowrap;
  background-color: #111122;
  color: #ff69b4;
  text-transform: uppercase;
  font-size: 1em;
}

td {
  background-color: #000000;
  color: #ccccff;
}


.file-index {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 700px;
  margin: 3em auto;
}

.casefile {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #33ffff55;
  padding: 1.5em;
  border-radius: 6px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #33ffff22;
}

.casefile a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4em;
  color: #33ffff; /* teal */
  text-decoration: none;
  text-shadow: 0 0 6px #33ffff;
  display: block;
  margin-bottom: 0.5em;
}

.casefile p.file-desc {
  font-size: 0.95em;
  color: #bf00ff; /* electric purple */
  text-shadow: 0 0 2px #bf00ff88;
  margin: 0;
}

.casefile:hover {
  background: rgba(51, 255, 255, 0.06);
  transform: scale(1.02);
  box-shadow: 0 0 12px #00ffff55;
}

.redacted a {
  color: #000000;
  background-color: #33ffff11;
  pointer-events: none;
  text-shadow: none;
}

.redacted:hover a {
  color: #ff33cc;
  pointer-events: auto;
  text-shadow: 0 0 8px #ff33cc;
}


.log {
background-color: rgba(0, 0, 0, 0.7);
border: 2px solid #33ffff55;
padding: 1em;
margin-bottom: 2em;
box-shadow: 0 0 12px #00ffff33;
white-space: pre-line;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}


.terminal-link {
  color: #33ffff;
  text-decoration: none;
  text-shadow: 0 0 3px #33ffff, 0 0 6px #33ffff;
}

.terminal-link:visited {
  color: #33ffff;
}

.terminal-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #ff66cc, 0 0 12px #ff66cc;
}



.jackhole-footer {
  text-align: center;
  background: black;
  color: #00ffff;
  font-family: monospace;
  padding: 1rem;
  font-size: 0.9rem;
}

.jackhole-footer a {
  color: #ff33cc; 
  text-decoration: none;
  text-shadow: 0 0 4px #ff33cc;
}

.jackhole-footer a:hover {
  text-shadow: 0 0 6px #ffffff, 0 0 12px #ff33cc;
}



.footer-line-pink {
  color: #ff66cc;
  text-shadow: 0 0 4px #ff66cc;
  margin: 0.15rem 0;
}

.footer-line-teal {
  color: #33ffff;
  text-shadow: 0 0 4px #33ffff;
  margin: 0.15rem 0;
}



.footer-link-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid #00ffff;
  border-radius: 4px;
  color: #00ffff;
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 4px #00ffff;
  font-size: 0.85rem;
}



@keyframes spectralGlitch {
  0% {
    opacity: 0.6;
    transform: translateY(0px);
    text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 0 6px #ff00ff, 0 0 10px #ff99ff;
  }
  100% {
    opacity: 0.7;
    transform: translateY(0.5px);
    text-shadow: 0 0 4px #ff00ff, 0 0 8px #ff33cc;
  }
}


@media (max-width: 600px) {
  footer {
    font-size: 0.9em;
    padding: 1.5em;
  }
}

