body {
  background: black;
  color: hotpink;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.enter {
  margin-top: 100px;
}

.enter-button {
  display: inline-block;
  padding: 15px 30px;
  background: red;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: 3px solid yellow;
}

.enter-button:hover {
  background: yellow;
  color: black;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 5px;
  border: 2px solid cyan;
}

#gallery img:hover {
  border-color: yellow;
}

.small {
  font-size: 12px;
  color: gray;
}

.footer {
  margin-top: 40px;
  font-size: 12px;
  color: cyan;
}
/* 4x4 grid */
#gallery {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  grid-template-rows: repeat(4, 200px);
  gap: 6px;
  justify-content: center;
  margin: 20px auto;
}

/* Make images fill the cells */
#gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Fake early-HTML pagination */
.pager {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 2px solid cyan;
  background: #111;
}

.pager a {
  color: yellow;
  text-decoration: underline;
  font-weight: bold;
}

.pager a:hover {
  color: cyan;
}

.pageText {
  color: hotpink;
  font-weight: bold;
}
.topjunk {
  margin-top: 10px;
  margin-bottom: 10px;
}

.junkbox {
  border: 2px dashed hotpink;
  background: #0b0b0b;
  color: cyan;
  font-size: 12px;
  width: 220px;
}

.bannerRow {
  margin: 10px auto 20px auto;
  width: 520px;
}

.banner {
  border: 3px solid yellow;
}

.tiny {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
}

.hr {
  border: 0;
  height: 2px;
  background: cyan;
  width: 80%;
  margin: 20px auto;
}

.badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 12px;
}

.blink {
  animation: blink 0.9s steps(1) infinite;
  color: yellow;
}

@keyframes blink {
  50% { opacity: 0; }
}
.guestwrap {
  margin-top: 20px;
  width: 800px;
}

.guestbox {
  border: 3px solid yellow;
  background: #050505;
}

.guestform {
  border: 2px solid cyan;
  background: #101010;
  width: 90%;
}

.guesttitle, .guesttitle2 {
  color: hotpink;
  background: #000;
  border-bottom: 2px dashed hotpink;
  text-align: center;
}

.label {
  color: cyan;
  font-size: 12px;
  width: 120px;
  text-align: right;
}

.gbinput, .gbtextarea {
  width: 95%;
  background: black;
  color: yellow;
  border: 2px solid hotpink;
  font-family: Arial, sans-serif;
}

.gbbutton {
  background: red;
  color: white;
  border: 2px solid yellow;
  padding: 6px 14px;
  font-weight: bold;
  cursor: pointer;
}

.gbbutton:hover {
  background: yellow;
  color: black;
}

.entry {
  width: 90%;
  margin: 10px auto;
  border: 2px dotted hotpink;
  background: #0b0b0b;
}

.entryhead {
  color: yellow;
  background: #000;
  width: 70%;
}

.entrytime {
  color: cyan;
  background: #000;
  text-align: right;
  font-size: 11px;
}

.entrybody {
  color: hotpink;
  text-align: left;
  font-size: 13px;
  line-height: 1.3em;
}
