<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&amp;family=VT323&amp;display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'VT323', monospace;
  background: radial-gradient(circle at center, #1a0000 0%, #000000 100%);
  color: #ffdddd;
  text-align: center;
  animation: flickerBG 10s infinite alternate;
}

@keyframes flickerBG {
  0% { filter: brightness(1); }
  50% { filter: brightness(0.95); }
  100% { filter: brightness(1.05); }
}

h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 4em;
  color: #ff3333;
  text-shadow: 3px 3px 10px #000, 0 0 15px red;
  margin-top: 40px;
  animation: pulseText 2s infinite alternate;
}

@keyframes pulseText {
  0% { text-shadow: 3px 3px 10px #000, 0 0 5px red; }
  100% { text-shadow: 3px 3px 10px #000, 0 0 20px red; }
}

p {
  font-size: 1.3em;
  margin: 20px;
  text-shadow: 0 0 5px #440000;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  gap: 20px;
}

button {
  background: linear-gradient(145deg, #5c0000, #990000);
  border: 2px solid #ff0000;
  padding: 18px 36px;
  color: #fff0f0;
  font-size: 1.5em;
  font-family: 'VT323', monospace;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff0000aa, inset 0 0 5px #330000;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

button:hover {
  background: linear-gradient(145deg, #cc0000, #ff3333);
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 0 25px #ff3333, 0 0 10px #ff0000 inset;
}

a {
  text-decoration: none;
}

.small-note {
  font-size: 1em;
  color: #ff9999;
  text-shadow: 0 0 3px #660000;
  animation: blinkNote 2s infinite;
}

@keyframes blinkNote {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

img {
  display: block;
  margin: 30px auto;
  max-width: 90%;
  border: 3px solid #990000;
  box-shadow: 0 0 15px #ff0000cc;
  border-radius: 12px;
}
</pre></body></html>