body {
  background-color: black;
  margin: 0;
  padding: 0;
  color: #f00;
  font-family: "Consolas";
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: url("https://files.catbox.moe/k1jnme.cur"), auto;
  }
  
  a:hover {
  cursor: url("https://files.catbox.moe/f3ziur.cur"), pointer;
  }

h1 {
  font-size: 6em;
  color: #ff0000;
  text-shadow:
    0 0 10px #ff0000,
    0 0 20px #660000;
  animation: flicker 2s infinite;
  margin-bottom: 20px;
}

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

.enter-btn {
  display: inline-block;
  padding: 15px 40px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #444, #111);
  border: 2px solid #ff0000;
  color: #ff0000;
  font-size: 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 0 15px #ff0000;
  transition: all 0.3s;
}

.enter-btn:hover {
  background: #ff0000;
  color: black;
  box-shadow:
    0 0 25px #ff0000,
    0 0 50px #ff0000;
}

.warning {
  margin-top: 40px;
  font-size: 1em;
  color: #aaa;
}

.marquee {
  margin-top: 20px;
  width: 80%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border-top: 1px solid #ff0000;
  border-bottom: 1px solid #ff0000;
  padding: 5px 0;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}