/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #ff1a1a;
  font-family: 'Creepster', cursive;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  text-align: center;
  z-index: 10;
  padding: 40px;
  max-width: 800px;
}

h1 {
  font-size: 4em;
  margin-bottom: 20px;
  animation: flicker 2s infinite;
}

.intro {
  font-size: 1.6em;
  color: #cccccc;
  margin-bottom: 30px;
}

button.danger {
  background: none;
  border: 2px solid #ff1a1a;
  color: #ff1a1a;
  font-size: 1.3em;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 5;
}

button.danger:hover {
  background-color: #ff1a1a;
  color: #000000;
  box-shadow: 0 0 15px #ff0000;
}

.hidden-message {
  display: none;
  font-size: 1.5em;
  margin-top: 40px;
  color: #ff0066;
  animation: glitch 1s infinite;
}

.glitch-title {
  text-shadow: 2px 0 red, -2px 0 blue;
}

.glitch-text {
  text-shadow: 1px 1px #550000;
  animation: glitch 0.8s infinite;
}

.glitch-button {
  animation: glitch 3s infinite;
}

.blinking-cursor {
  font-weight: bold;
  animation: blink 1s step-end infinite;
}

.screen-flicker {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  animation: flickerScreen 0.1s infinite;
  pointer-events: none;
}

/* Animations */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(3px, -2px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}

@keyframes blink {
  from, to { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes flickerScreen {
  0% { opacity: 0.02; }
  
  
  .file-list ul {
  list-style-type: none;
  margin-top: 30px;
  padding: 0;
  text-align: left;
}

.file-list li {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #dddddd;
}

.file-name {
  color: #ff3333;
  font-weight: bold;
}

.file-name.redacted {
  color: #660000;
  text-decoration: line-through;
}

.unavailable {
  color: #777;
  font-style: italic;
}
  50% { opacity: 0.04; }
  100% { opacity: 0.02; }
}