@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  background: black;
  font-family: 'Share Tech Mono', monospace;
  color: #ff3;
  overflow-x: hidden;
}
.bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/noise.gif') repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.container {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.centered {
  text-align: center;
  margin-bottom: 40px;
}
.warning-text {
  font-size: 2em;
  color: red;
  text-shadow: 0 0 5px #f00, 0 0 10px #900;
  animation: glitch 1.5s infinite;
}
.desc {
  font-size: 1.2em;
  margin-top: 10px;
  color: #aaa;
}
.gallery {
  text-align: center;
  margin-bottom: 40px;
}
.images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
  gap: 10px;
  justify-items: center;
}
.images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid red;
  box-shadow: 0 0 10px red;
}
.upload {
  max-width: 400px;
  margin: 0 auto 60px;
  text-align: center;
}
.upload input, .upload button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  background: #111;
  border: 1px solid red;
  color: #ff3;
  font-family: inherit;
  font-size: 1em;
}
.upload button {
  cursor: pointer;
  animation: flicker 2s infinite;
}
#status {
  margin-top: 10px;
  font-size: 0.9em;
}

@keyframes glitch {
  0%,20%,40%,60%,80%,100% { transform: translate(0); }
  10% { transform: translate(-2px,2px); }
  30% { transform: translate(2px,-2px); }
  50% { transform: translate(-2px,-2px); }
  70% { transform: translate(2px,2px); }
  90% { transform: translate(-1px,1px); }
}
@keyframes flicker {
  0%,19%,21%,23%,25%,54%,56%,100% { opacity: 1; }
  20%,22%,24%,55% { opacity: 0.5; }
}
