:root {
  --bg-color: #0a0a0a;
  --text-main: #00ff41;

  /* THE TRAP VARIABLES */
  --reveal-opacity: 0;
  --security-blur: blur(20px); /* Makes the pixels completely unreadable */
  --secret-scale: scale(0); /* Shrinks it to nothing */
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.terminal-container {
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  color: rgba(0, 255, 65, 0.3);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.status {
  opacity: 0.7;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.2;
  }
}

/* =========================================
   THE HIDDEN CLUE STYLING
   ========================================= */

#quest-init span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #fff;
}


body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.terminal-container {
  text-align: center;
  z-index: 1;
}

/* ... keep your previous h1 and .status styles ... */

/* =========================================
   THE CANVAS TRAP STYLING
   ========================================= */
#quest-init {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) var(--secret-scale);

  opacity: var(--reveal-opacity);
  filter: var(--security-blur);

  pointer-events: none;
  z-index: 100;
  transition: all 0.8s ease-in-out;
}
