
/* secret.css */
body {
  background: radial-gradient(#111 20%, #000 100%);
  color: #FCE96A;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.secret-container {
  animation: flicker 2s infinite;
}

.secret-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD54F;
  text-shadow: 0 0 5px #FFD54F, 0 0 10px #FFA000;
}

.secret-container p {
  font-style: italic;
  font-size: 1.2rem;
  color: #A5FF00;
  animation: glitch 1.2s infinite alternate;
}

.secret-container a {
  margin-top: 2rem;
  display: inline-block;
  color: #FF4081;
  text-decoration: none;
  font-weight: bold;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

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