body {
  margin: 0;
  min-height: 100vh;
  width: 100vw;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  position: relative;
  background: url('https://img.noni.ing/bgimg.png') center center / cover no-repeat fixed;
  overflow-x: hidden;
}

/* Overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.6) 30%,
    rgba(0,0,0,0.3) 65%,
    rgba(0,0,0,0.0) 100%
  );
}

/* Header, logo, and title */
.secondary-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
  padding-top: 32px;
}

.small-logo {
  width: 68px;
  height: 68px;
  margin: 36px auto 10px auto;
  display: block;
  border-radius: 12px;
  background: #fff8;
  box-shadow: 0 4px 18px #0003;
  object-fit: contain;
}

.title {
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 2.1em;
  color: #fff;
  letter-spacing: 4px;
  font-weight: bold;
  text-shadow:
    0 4px 0 #ffffff,
    0 9px 16px #ffffffaf,
    0 1px 0 #000000;
  margin: 0 0 30px 0;
  text-align: center;
  user-select: none;
  background: linear-gradient(90deg, #fff 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Info, FAQ, and Rules Boxes */
.info-list, .faq-list, .rules-list {
  max-width: 900px;
  margin: 30px auto 0 auto;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 14px;
  padding: 32px 28px;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-size: 1.01em;
  box-shadow: 0 4px 24px #0004;
}

.info-list h2, .info-list h3,
.faq-list h2, .rules-list h2 {
  color: #fff;
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 1.1em;
  margin-top: 24px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.info-list ul, .info-list ol,
.faq-list dl, .rules-list ol {
  margin-bottom: 22px;
}

.info-list b, .faq-list dt, .rules-list b {
  color: #fff;
  font-weight: bold;
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 0.98em;
  letter-spacing: 1px;
}

.info-list a, .faq-list a, .rules-list a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/* FAQ styling */
.faq-list h2 {
  margin-bottom: 24px;
}

.faq-list dt {
  font-family: 'Press Start 2P', 'Arial', monospace;
  margin-top: 18px;
  font-size: 1em;
  letter-spacing: 1px;
  color: #fff;
}

.faq-list dd {
  margin-left: 0;
  margin-bottom: 10px;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  color: #fff;
}

/* Rules styling */
.rules-list ol {
  padding-left: 1.3em;
}
.rules-list li {
  margin-bottom: 18px;
  line-height: 1.5;
}
.rules-list b {
  color: #fff;
}

/* Staff Section */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  margin: 32px 0 10px 0;
}

.staff-card {
  display: flex;
  align-items: center;
  background: rgba(32, 32, 32, 0.85);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 2px 12px #0003;
  gap: 20px;
  min-height: 100px;
}

.staff-head {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #fff;
}

.staff-head img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: pixelated;
  background: #222;
}

.staff-name {
  font-family: 'Press Start 2P', 'Arial', monospace;
  color: #fff;
  font-size: 1.12em;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.staff-role {
  color: #fff;
  font-size: 1em;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #222;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 6px;
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1.5px solid #fff;
}

/* Staff Role Colors */
.owner-badge {
  background: #222;
  color: #fff;
  border: 1.5px solid #fff;
  box-shadow: 0 0 6px #fff6, 0 0 0 #0000;
}
.mod-badge {
  background: #2941ab;
  color: #fff;
  border: 1.5px solid #2941ab;
  box-shadow: 0 0 6px #2941ab66, 0 0 0 #0000;
}
.helper-badge {
  background: #afafaf;
  color: #222;
  border: 1.5px solid #afafaf;
  box-shadow: 0 0 6px #afafaf66, 0 0 0 #0000;
}

/* Navigation and copyright */
.nav-btn {
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 1em;
  background: #fff;
  color: #111 !important;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 6px #0002;
  letter-spacing: 1px;
  outline: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.nav-btn:hover,
.nav-btn:focus,
.nav-btn:active,
.nav-btn:visited {
  background: #e5e5e5;
  color: #111 !important;
  box-shadow: 0 4px 16px #0003;
}
.home-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

.copyright {
  position: fixed;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 0.95em;
  font-family: 'Press Start 2P', 'Arial', monospace;
  opacity: 0.75;
  z-index: 10;
  user-select: none;
  pointer-events: none;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000c;
}

/* Responsive */
@media (max-width: 600px) {
  .info-list, .faq-list, .rules-list {
    padding: 18px 4vw;
  }
  .staff-card {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 14px 8px;
  }
  .staff-head {
    width: 64px;
    height: 64px;
  }
  .staff-head img {
    width: 60px;
    height: 60px;
  }
}