:root {
  --bg: #000010;
  --panel: #07072f;
  --ink: #e6eeff;
  --acid: #33ff66;
  --cyan: #66ffff;
  --magenta: #ff55dd;
  --yellow: #fff05a;
  --red: #ff3333;
  --dim: #a0a0c8;
  --rainbow: linear-gradient(
    90deg,
    #ff0000,
    #ff8800,
    #ffff00,
    #33ff33,
    #33ccff,
    #6633ff,
    #ff33ff,
    #ff0000
  );
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  cursor:
    url("/static/cursor.svg") 2 2,
    auto;
}
body {
  margin: 0;
  background-color: var(--bg);
  background-image: url("/static/stars.svg");
  background-attachment: fixed;
}
a {
  color: var(--cyan);
  text-underline-offset: 2px;
  cursor:
    url("/static/cursor.svg") 2 2,
    pointer;
}
a:visited {
  color: #cc88ff;
}
a:hover {
  color: var(--yellow);
  background: #ff00ff;
  text-shadow: 0 0 6px #fff;
}
a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
h2 {
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  color: var(--yellow);
  text-shadow:
    2px 2px 0 #ff00ff,
    4px 4px 0 #000;
  text-align: center;
  font-size: 30px;
  margin: 4px 0 14px;
}
h2::before,
h2::after {
  content: " \2605 ";
  color: var(--cyan);
  text-shadow: none;
}
.wrap {
  width: min(860px, calc(100% - 24px));
  margin: 18px auto 60px;
}
.box {
  border: 4px ridge #b0b0e0;
  background: rgba(7, 7, 47, 0.93);
  padding: 14px;
  margin: 14px 0;
  box-shadow:
    6px 6px 0 #000,
    0 0 14px rgba(255, 0, 255, 0.35);
}
.banner {
  text-align: center;
  border: 6px outset #c0c0ff;
  padding: 14px 12px 10px;
  background:
    radial-gradient(circle at 50% -20%, #5a1a8a 0, transparent 70%),
    #10104a;
}
.banner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.banner h1 {
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  margin: 0 0 6px;
  font-size: clamp(26px, 6vw, 52px);
  letter-spacing: 1px;
  background: var(--rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(3px 3px 0 #000) drop-shadow(0 0 8px #ff00ff);
  animation: rainbow 4s linear infinite;
}
@keyframes rainbow {
  to {
    background-position: 200% 0;
  }
}
.tagline {
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  color: var(--acid);
  text-shadow: 0 0 6px var(--acid);
}
.marquee {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  color: var(--yellow);
  border-top: 2px dashed var(--magenta);
  border-bottom: 2px dashed var(--magenta);
  background: #000;
  padding: 5px 4px;
  margin-top: 9px;
  font-family: "Courier New", monospace;
  font-weight: bold;
}
.marquee .globe {
  flex: none;
  position: relative;
  z-index: 1;
}
.marquee span {
  flex: none;
  display: inline-block;
  padding-left: 100%;
  animation: scroll 17s linear infinite;
}
.marquee-back {
  margin-top: 0;
  border-top: 0;
  color: var(--magenta);
}
.marquee-back span {
  animation-name: scroll-back;
  animation-duration: 23s;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-back {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.flames {
  height: 26px;
  margin: 4px 0 -8px;
  background: url("/static/flames.svg") repeat-x bottom / 60px 26px;
}
.rainbow {
  height: 6px;
  margin: 22px 0 10px;
  background: var(--rainbow);
  background-size: 200% 100%;
  box-shadow: 0 0 10px #ff00ff;
  animation: rainbow 3s linear infinite;
}
.nav {
  text-align: center;
  padding: 8px;
  line-height: 2.1;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  font-weight: bold;
  color: var(--magenta);
  background: linear-gradient(#20207a, #07072f);
}
.nav a {
  margin: 0 5px;
  white-space: nowrap;
}
.badge {
  display: inline-block;
  border: 2px outset #ccc;
  background: #111;
  padding: 2px 5px;
  margin: 2px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  color: #eee;
}
.counter {
  display: inline-block;
  background: #000;
  color: #ff4444;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 4px;
  padding: 3px 8px;
  border: 3px inset #777;
  text-shadow: 0 0 6px #ff0000;
}
.small {
  color: var(--dim);
  font-size: 14px;
}
.tiny {
  font-size: 11px;
  color: #7070a0;
}
hr {
  border: 0;
  height: 4px;
  background: var(--rainbow);
}
pre,
code {
  font-family: "Courier New", monospace;
  font-size: 15px;
  white-space: pre-wrap;
  word-break: break-word;
}
input,
textarea,
button,
select {
  font: 15px "Courier New", monospace;
  color: #000;
  background: #eee;
  border: 3px inset #aaa;
  padding: 7px;
  max-width: 100%;
}
textarea {
  width: 100%;
  min-height: 90px;
  background: #ffffe0;
}
input[type="text"],
input[type="search"] {
  width: min(100%, 460px);
}
button,
input[type="submit"] {
  font-family: Verdana, Arial, sans-serif;
  font-weight: bold;
  background: #c0c0c0;
  border: 3px outset #fff;
  min-height: 38px;
  cursor:
    url("/static/cursor.svg") 2 2,
    pointer;
}
button:hover,
input[type="submit"]:hover {
  background: var(--yellow);
}
button:active,
input[type="submit"]:active {
  border-style: inset;
}
.entry {
  border-top: 2px dotted var(--magenta);
  padding: 12px 0;
  overflow-wrap: anywhere;
}
.entry:first-child {
  border-top: 0;
}
.entry pre {
  background: #000;
  border: 1px solid #333366;
  padding: 8px;
  color: #ccffcc;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  border-top: 2px dotted var(--magenta);
  margin-top: 10px;
  padding-top: 12px;
  color: var(--dim);
}
.pager a {
  font-weight: bold;
}
.path {
  color: var(--acid);
}
.warning {
  color: #000;
  background: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 1px;
  padding: 1px 6px;
  border: 2px dashed #000;
}
.box-title {
  display: block;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  font-size: 20px;
  color: var(--acid);
  text-shadow: 2px 2px 0 #000;
  border-bottom: 2px groove #6666aa;
  margin-bottom: 6px;
}
.stars-list {
  list-style: none;
  padding-left: 4px;
}
.stars-list li {
  margin: 4px 0;
}
.stars-list li::before {
  content: "\2605  ";
  color: var(--yellow);
}
.status {
  background: #000;
  color: var(--acid);
  padding: 8px;
  border: 2px inset #555;
  text-shadow: 0 0 4px var(--acid);
}
.welcome p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
}
.welcome .blink {
  color: var(--red);
}
.construction-row {
  text-align: center;
  margin: 6px 0;
}
.sign-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  font-size: 18px;
}
.webring {
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  background: #200020;
  border-color: #ff55dd;
}
.webring b {
  color: var(--magenta);
}
.footer {
  text-align: center;
  font-size: 13px;
  color: #a0a0c8;
  margin-top: 20px;
  line-height: 1.7;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.buttons img {
  image-rendering: pixelated;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 650px) {
  .wrap {
    width: min(100% - 14px, 860px);
    margin-top: 7px;
  }
  .box {
    padding: 11px;
    box-shadow: 3px 3px 0 #000;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .nav a {
    margin: 0 3px;
  }
  .banner-row img,
  .sign-me img {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee span,
  .blink,
  .banner h1,
  .rainbow {
    animation: none;
  }
  .anim,
  .flames {
    display: none;
  }
}
.blink {
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
