body {
  background: linear-gradient(135deg, #2a003f, #5e2b8c);
  color: #e0b3ff;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 20px;
  animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
  0% { background: #2a003f; }
  100% { background: #5e2b8c; }
}

.container {
  border: 3px dashed #a64aff;
  padding: 20px;
  background-color: rgba(50, 0, 80, 0.8);
  box-shadow: 0 0 20px #a64aff;
}

h1 {
  font-size: 2.5em;
  text-shadow: 0 0 10px #d580ff;
}

.glitch-text {
  font-size: 1.2em;
  animation: glitch 1s infinite;
}

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

.bunny {
  width: 200px;
  margin: 20px auto;
  border: 2px solid #d580ff;
  box-shadow: 0 0 15px #d580ff;
}

.links a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #a64aff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 10px #d580ff;
  transition: transform 0.3s;
}

.links a:hover {
  transform: scale(1.1) rotate(-2deg);
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #d9b3ff;
}