/* Deliberately, lovingly awful. A 1998 GeoCities "under construction" shrine rendered in pure CSS so
   it needs no animated GIFs. Everything here is on purpose. */

body {
  margin: 0;
  background-color: #000033;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 70px 90px, #ff0, transparent),
    radial-gradient(1px 1px at 130px 50px, #0ff, transparent),
    radial-gradient(2px 2px at 100px 140px, #fff, transparent),
    radial-gradient(1px 1px at 170px 110px, #f0f, transparent);
  background-size: 200px 200px;
  color: #00ff00;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  text-align: center;
  padding-bottom: 40px;
}

/* Animated yellow/black "construction" barber-pole. */
.barber {
  height: 28px;
  background-image: repeating-linear-gradient(
    45deg, #ffcc00 0, #ffcc00 20px, #000 20px, #000 40px
  );
  animation: slide 0.6s linear infinite;
  border-top: 3px ridge #ffcc00;
  border-bottom: 3px ridge #ffcc00;
}
@keyframes slide {
  from { background-position: 0 0; }
  to { background-position: 56.57px 0; }
}

/* Scrolling banner (CSS marquee). */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  border-top: 2px solid #ff00ff;
  border-bottom: 2px solid #ff00ff;
  padding: 6px 0;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  color: #ffff00;
  font-size: 1.1rem;
  font-weight: bold;
  animation: scroll 16s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.blink { animation: blink 1s steps(2, start) infinite; }
@keyframes blink { 50% { visibility: hidden; } }

.shrine {
  max-width: 640px;
  margin: 30px auto;
  padding: 24px;
  background: rgba(0, 0, 51, 0.6);
  border: 4px outset #00ffff;
}

h1.giant {
  font-size: 2.6rem;
  color: #ff0000;
  text-shadow: 2px 2px 0 #ffff00, 4px 4px 0 #000;
  letter-spacing: 2px;
  margin: 6px 0;
}
.cones { font-size: 2.4rem; letter-spacing: 8px; }

.subtitle {
  color: #00ffff;
  font-size: 1.2rem;
  margin: 14px 0;
}
.subtitle b { color: #ff00ff; }

/* Rainbow horizontal rule. */
.rainbow {
  height: 6px;
  border: 0;
  margin: 20px 0;
  background: linear-gradient(
    90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff, #ff0000
  );
}

/* LED visitor counter. */
.counter {
  display: inline-block;
  background: #000;
  border: 3px inset #555;
  padding: 6px 10px;
  margin-top: 6px;
}
.counter .digit {
  display: inline-block;
  width: 22px;
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff3300;
  text-shadow: 0 0 6px #ff3300;
  background: #1a0000;
  border: 1px solid #330000;
  margin: 0 1px;
}
.counter-label { color: #ffffff; font-size: 0.85rem; }

.badges {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.badge {
  border: 2px outset #888;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: #000;
  background: #c0c0c0;
}
.badge.netscape { background: #00ff00; color: #000; }
.badge.res { background: #ffff00; color: #000; }
.badge.html { background: #ff9900; color: #000; }

.nowplaying {
  margin: 16px 0;
  color: #ffff00;
  font-size: 0.95rem;
}
.new {
  color: #ff0000;
  font-weight: bold;
  font-size: 0.8rem;
  vertical-align: super;
}

.gc-links { margin: 18px 0; line-height: 2.2; }
.gc-links a {
  color: #00ffff;
  text-decoration: underline;
  font-size: 1rem;
}
.gc-links a:visited { color: #ff00ff; }
.gc-links a:hover { color: #ffffff; background: #0000aa; }

.webring {
  margin-top: 22px;
  padding: 10px;
  border: 2px ridge #ffcc00;
  color: #ffffff;
  font-size: 0.82rem;
}
.webring a { color: #00ff00; }

.home-link {
  display: inline-block;
  margin-top: 26px;
  color: #ffffff;
  border: 2px outset #008800;
  background: #004400;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 0.9rem;
}
.home-link:hover { background: #006600; }
