@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

@font-face {
  font-family: 'Cuomotype';
  src: url('https://micryptid.neocities.org/DEADMEATWEB/fonts/Cuomotype.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background-color: black;
  color: #ffccff;
  font-family: 'Special Elite', 'Cuomotype', monospace;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  animation: background-flicker 4s infinite alternate;
  
}
/* Custom cursors */
body {
  cursor: url('https://micryptid.neocities.org/purple-eye-normal.cur'), auto;
}

a, button {
  cursor: url('https://micryptid.neocities.org/purple-eye-link.cur'), pointer;
}

@keyframes background-flicker {
  0% { background-color: #000; }
  50% { background-color: #0a0a0a; }
  100% { background-color: #000; }
}

/* Main layout */
.main-container {
  display: flex;
  min-height: 100vh;
}

/* Left section */
.left-section {
  width: 250px;
  background-color: #1a1a1a;
  padding: 20px;
  color: #ffccff;
  border: 3px ridge #9932cc;
}

.left-section a {
  color: #ffccff;
  text-decoration: underline;
  font-weight: bold;
}

.left-section a:hover {
  color: yellow;
  background-color: purple;
  border: 1px dashed yellow;
  text-decoration: none;
}

.left-section ul {
  list-style-type: square;
  background-color: #2a2a2a;
  padding: 15px;
  border: 2px dotted #ff00ff;
}

.left-section li {
  margin-bottom: 12px;
  font-weight: bold;
}

/* Main content */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #111;
  border: 5px double purple;
  box-shadow: 0 0 15px #ff00ff;
}

/* Glitchy headers */
h1, h2, h3 {
  font-family: 'Cuomotype', 'Special Elite', Impact, sans-serif;
  color: #ff00ff;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
  background-color: #222;
  padding: 10px;
  border: 3px groove #800080;
  margin: 20px 0;
}

/* File metadata / classified look */
.metadata {
  font-size: 0.9em;
  color: #aaa;
  font-family: 'Courier New', monospace;
  margin-bottom: 10px;
}

.metadata span {
  font-weight: bold;
  margin-right: 10px;
  color: #ffccff;
}

/* Caption style */
.caption {
  font-style: italic;
  font-size: 1.2em;
  color: #ffccff;
  background-color: #222;
  padding: 8px;
  border: 2px inset #800080;
  margin-top: 10px;
  text-shadow: 0 0 2px #f0f, 0 0 5px #f0f;
  position: relative;
}

.caption::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  top: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 0, 255, 0.2));
  filter: blur(2px);
  animation: drip 3s infinite;
}

@keyframes drip {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Image style */
.container img {
  max-width: 90%;
  height: auto;
  margin-top: 20px;
  border: 5px outset #ff00ff;
  background-color: #000;
  padding: 5px;
  box-shadow: 4px 4px 0 #660066;
  border-radius: 8px;
  filter: contrast(1.2) brightness(0.95);
}

/* Redacted text */
.redacted {
  background-color: #000;
  color: #000;
  padding: 0 4px;
  font-size: 0.9em;
  letter-spacing: 1px;
}

/* Optional VHS overlay */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: url('https://64.media.tumblr.com/1e176f45b346c9a6e045ef12b6bbf6aa/tumblr_puxuzlM2tr1xvq3x0o1_1280.gif') repeat;
  opacity: 0.03;
  z-index: 9999;
}
.image-row {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  gap: 20px; /* Optional: space between images */
  justify-content: center; /* Center the row in the container */
  align-items: flex-start; /* Align images to the top */
}

.image-row img {
  max-width: 100%;
  height: auto;
}
