body {
  cursor: url("pics/Saturn.cur"), auto;
  color: white;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #fff;
  background-color: black;
  background-image: url("pics/stars3.gif");
  background-size: 150px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Blinking guestbook link */
.blinklink {
  font-size: 80px;
  animation: flash 1s infinite;
}

@keyframes flash {
  0% { color: red; }
  25% { color: yellow; }
  50% { color: lime; }
  75% { color: cyan; }
  100% { color: magenta; }
}

/* Sparkle fade animation */
@keyframes fade {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ~STAY GALACTIC~ */
.stay-galactic {
  color: purple;
  font-size: 80px;
}

/* Floating planets */
.planet-bottom-right,
.planet-top-left {
  position: fixed;
  width: 120px;
  height: auto;
  z-index: 9999;
  pointer-events: none;
}

.planet-bottom-right {
  bottom: 10px;
  right: 10px;
}

.planet-top-left {
  top: 10px;
  left: 10px;
}

/* Wandering Dog */
.wandering-dog {
  position: fixed;
  width: 64px;
  height: 64px;
  z-index: 9999;
  pointer-events: none;
  top: 50px;
  left: 50px;
  transition: top 0.5s linear, left 0.5s linear;
}

/* Jason Chatbox */
#jasonChatbox {
  width: 300px;
  height: 240px;
  border: 2px solid #666;
  background: #000;
  color: #0f0;
  font-family: "Courier New", monospace;
  font-size: 13px;
  padding: 5px;
  overflow: hidden;
  position: fixed;
  bottom: 10px;
  left: 10px;
  box-shadow: 0 0 10px #0f0;
  display: flex;
  flex-direction: column;
}

#jasonChatLog {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 5px;
}

#jasonChatInput {
  display: flex;
  gap: 5px;
}

#jasonChatInput input {
  flex: 1;
  padding: 2px;
  background: #111;
  border: 1px solid #444;
  color: #0f0;
}

#jasonChatInput button {
  padding: 2px 6px;
  cursor: pointer;
  background: #222;
  border: 1px solid #555;
  color: #0f0;
}
#jasonChatHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #0f0;
  padding: 2px 5px;
  font-weight: bold;
  border-bottom: 1px solid #0f0;
}

#closeChat {
  background: #222;
  color: #0f0;
  border: 1px solid #0f0;
  cursor: pointer;
  padding: 0 5px;
}




