 @import url('https://extort.us/scripts/bloodlust.css');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Blood Lust', cursive, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: black;
}

#bg-gif {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: brightness(0.3);
}

#num-text {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12vw;
  color: grey;
  text-shadow: 0 0 5px #555;
  user-select: none;
  opacity: 0;
  transition: opacity 2s ease, transform 2s ease;
  z-index: 5;
}

#num-text.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

#overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background 0.3s ease;
}

#overlay:hover {
  background: rgba(0,0,0,0.75);
}

#click-text {
  font-size: 8vw;
  color: grey;
  font-weight: 900;
  text-shadow: 0 0 5px #555;
}

body.allow-scroll {
  overflow: auto;
}

#discord-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background-color: black;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

#discord-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

#discord-icon:hover {
  transform: scale(1.1);
}

#tos-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background-color: black;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid grey;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#tos-button:hover {
  background-color: #222;
  transform: scale(1.05);
}
