body {
  font-family: "Comic Sans MS", "Chalkboard SE", cursive;
  background: #008080;
  color: #ffff00;
  margin: 0;
  padding: 20px;
  text-align: center;
}
.frame {
  background: #c0c0c0;
  border: 4px ridge #fff;
  max-width: 820px;
  margin: 20px auto;
  padding: 18px;
  color: #000;
}
h1 {
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(2rem, 7vw, 4rem);
  color: #ff0000;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #ffff00;
  margin: 0 0 4px;
  letter-spacing: .04em;
}
h2 {
  font-family: "Impact", sans-serif;
  color: #0000ff;
  margin: 16px 0 8px;
  border-bottom: 3px double #000;
  padding-bottom: 4px;
}
.tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #0000ff;
  font-weight: bold;
  margin: 0 0 14px;
}
nav {
  background: #000;
  border: 3px outset #808080;
  padding: 8px;
  margin-bottom: 14px;
}
nav a {
  color: #ffff00;
  font-family: "Courier New", monospace;
  font-weight: bold;
  text-decoration: none;
  padding: 4px 10px;
  border: 2px outset #808080;
  background: #800080;
  margin: 2px;
  display: inline-block;
}
nav a:hover { background: #ff00ff; color: #000; }
nav a.current { background: #ffff00; color: #000; }

marquee {
  background: #000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  padding: 6px 0;
  margin: 14px 0;
  border: 2px solid #ffff00;
}
button, input[type=submit] {
  font-family: "Impact", sans-serif;
  font-size: 1.1rem;
  padding: 8px 16px;
  background: #ffff00;
  color: #000;
  border: 3px outset #808080;
  cursor: pointer;
}
button:active, input[type=submit]:active { border-style: inset; }
button:disabled { opacity: .5; cursor: not-allowed; }
input[type=text], input[type=password], select {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  padding: 6px 8px;
  border: 2px inset #fff;
  background: #fff;
  color: #000;
}
label { font-weight: bold; }
.row { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.slot-list {
  list-style: none;
  padding: 0;
  margin: 12px auto;
  max-width: 540px;
  text-align: left;
}
.slot-list li {
  background: #fff;
  border: 2px ridge #808080;
  padding: 6px 10px;
  margin: 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Courier New", monospace;
}
.slot-num {
  display: inline-block;
  background: #000;
  color: #ffff00;
  padding: 2px 8px;
  margin-right: 10px;
  font-weight: bold;
  min-width: 32px;
  text-align: center;
}
.alive { color: #006400; font-weight: bold; }
.busted { color: #b00; font-weight: bold; text-decoration: line-through; }
.pending { color: #888; }
.drafted_r1 { color: #006400; font-weight: bold; }
.drafted_other { color: #b00; font-weight: bold; }

table {
  margin: 10px auto;
  border-collapse: collapse;
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 760px;
  font-family: "Courier New", monospace;
}
th, td {
  border: 2px inset #c0c0c0;
  padding: 6px 10px;
  text-align: left;
}
th {
  background: #000080;
  color: #ffff00;
  font-family: "Impact", sans-serif;
}
tr:nth-child(even) td { background: #eee; }

.err { color: #b00; font-weight: bold; }
.ok { color: #006400; font-weight: bold; }
.small { font-size: .85rem; }
footer {
  color: #fff;
  font-size: .8rem;
  margin-top: 20px;
  text-align: center;
}
footer a { color: #ffff00; }
.blink { animation: blink 1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
