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 remains 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%
  );
}

/* --- Headers 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 Box --- */
.info-list {
  max-width: 600px;
  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 {
  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 {
  margin-bottom: 22px;
}

.info-list b {
  color: #fff;
  font-weight: bold;
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 0.98em;
  letter-spacing: 1px;
}

.info-list a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/* --- 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;
}

/* --- Nav 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 {
    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;
  }
}
.owner-badge {
  background: #dfc21f;
  color: #fff;
  border: 1.5px solid #000000;
  box-shadow: 0 0 6px #fff6, 0 0 0 #0000;
}

.admin-badge {
  background: #ff0000;
  color: #fff;
  border: 1.5px solid #000000;
  box-shadow: 0 0 6px #ff000066, 0 0 0 #0000;
}

.helper-badge {
  background: #afafaf;
  color: #222;
  border: 1.5px solid #000000;
  box-shadow: 0 0 6px #afafaf66, 0 0 0 #0000;
}