body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: Consolas, monospace;
  user-select: none;
  cursor: none; /* Hides cursor for realism */
}

#bsod {
  background-color: #0078D7;
  color: white;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none; /* Prevents interaction */
}

.content {
  max-width: 600px;
  pointer-events: none;
}

.emoji {
  font-size: 64px;
  margin-bottom: 20px;
}
#support-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #004eaa;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: Consolas, monospace;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  animation: bounce 2s infinite;
  z-index: 9999;
  user-select: none;
  pointer-events: none; /* prevents interaction */
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
