.jumpscare-link {
  color: #ff1414 !important;
  font-weight: 700;
  animation: jumpscare-pulse 1s infinite;
}

@keyframes jumpscare-pulse {
  0%, 100% { text-shadow: 0 0 4px #ff0000; }
  50% { text-shadow: 0 0 14px #ff0000, 0 0 24px #ff0000; }
}

#jumpscareOverlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: jumpscare-flash 0.25s steps(1, jump-none) 6;
}

@keyframes jumpscare-flash {
  0%, 100% { background: #000; }
  50% { background: #ff0000; }
}

#jumpscareFrame {
  width: 100vw;
  height: 100vh;
  border: 0;
}

.jumpscare-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100000;
  background: #ff1414;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.jumpscare-sound {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  background: #ff1414;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.jumpscare-fallback {
  position: fixed;
  bottom: 8px;
  right: 12px;
  z-index: 100000;
  color: #888;
  font-family: sans-serif;
  font-size: 11px;
  text-decoration: underline;
}
