body {
  
  cursor: url("blinkies/436.gif"), auto;
  margin: 0;
  background: url(images/ss145.gif);
  background-repeat: repeat;
  color: #ffd6ff;
  font-family: "Courier New", monospace;
}

.page {
  width: 1050px;
  margin: 20px auto;
  text-align: center;
}

header {
  padding: 15px;
  border-bottom: 2px solid #ff5de8;
}

.top-decor {
  font-family: Georgia, serif;
  font-size: 46px;
  color: #ff8cf3;
  text-shadow: 0 0 8px #ff00cc;
}

h1 {
  margin: 10px 0;
  font-size: 46px;
  color: #39ff14;
  text-shadow: 0 0 8px #00ff66, 0 0 14px #ff00cc;
}

.subtitle {
  font-size: 24px;
  color: #39ff14;
}

nav {
  margin: 20px 0;
  font-size: 19px;
}

nav a {
  color: #ff66dd;
  margin: 0 18px;
  text-decoration: underline;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 12px;
  text-align: left;
}

.box {
  border: 2px solid #ff4fd8;
  background: rgba(0, 0, 0, 0.85);
  padding: 22px;
  box-shadow: 0 0 12px #2b0028;
}

.green-box {
  border-color: #39ff14;
}

.box h2 {
  color: #ff8cf3;
  font-family: Georgia, serif;
  font-size: 28px;
  margin-top: 0;
}

.welcome {
  min-height: 260px;
}

.image-box {
  position: relative;
  padding: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.2) contrast(1.1);
}

.timestamp {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: white;
  font-size: 27px;
  text-shadow: 2px 2px 4px black;
}

.dream {
  min-height: 180px;
}

.sighting {
  border-color: #6aff5c;
  min-height: 180px;
}

.mini-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: start;
}

.sighting .mini-layout {
  grid-template-columns: 1fr 220px;
}

.mini-layout img {
  width: 100%;
  border: none;
}

a {
  color: #ff66dd;
  font-weight: bold;
}

.pink {
  color: #ff00ee;
  font-size: 20px;
}

.green {
  color: #39ff14;
}

footer {
  margin-top: 25px;
  border-top: 2px solid #ff5de8;
  padding: 20px;
  color: #ff66dd;
  font-size: 20px;
}

.about-box {
  text-align: left;
}

.visitor span {
  background: #111;
  border: 1px solid #ccc;
  color: white;
  padding: 2px 6px;
  letter-spacing: 3px;
  font-family: "Courier New", monospace;
}
.flying-ufo {
  position: fixed;
  width: 140px;
  top: 120px;
  left: -200px;
  z-index: 999999;
  pointer-events: none;
  animation-name: flyAcross;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 0 10px #7fff00);
}

@keyframes flyAcross {
  0% {
    left: -100px;
    top: 540px;
  }

  25% {
    top: 300px;
  }

  50% {
    top: 480px;
  }

  75% {
    top: 210px;
  }

  100% {
    left: 100vw;
    top: 550px;
  }
}

#popup {
  display: none;

  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 420px;

  background: #d4d0c8;

  border: 2px solid black;

  z-index: 999999;

  animation: popupFlash 0.8s infinite;
}

.popup-title {
  background: linear-gradient(
    to right,
    #000080,
    #1084d0
  );

  color: white;

  font-weight: bold;

  padding: 8px;

  font-family: Arial, sans-serif;

  animation: titleFlash 0.5s infinite;
}

.popup-content {
  padding: 20px;

  text-align: center;

  color: black;

  font-family: Arial, sans-serif;
}

.popup-content button {
  margin: 10px;

  padding: 8px 20px;

  font-weight: bold;

  cursor: pointer;
}

@keyframes popupFlash {
  0% {
    box-shadow: 0 0 8px #ff00ff;
    border-color: #ff00ff;
  }

  50% {
    box-shadow: 0 0 25px #39ff14;
    border-color: #39ff14;
  }

  100% {
    box-shadow: 0 0 8px #ff00ff;
    border-color: #ff00ff;
  }
}

@keyframes titleFlash {
  0% {
    background: #000080;
    color: white;
  }

  50% {
    background: #ff00ff;
    color: yellow;
  }

  100% {
    background: #000080;
    color: white;
  }
}

