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;
}

/* Black overlay gradient from top to bottom */
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%
  );
}

/* Ensure content is above overlay */
.centerpiece {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
}

.floating-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px 0 rgba(34, 49, 63, 0.3);
  border-radius: 18px;
  background: #fff8;
  margin-bottom: 38px;
  margin-top: 0;
}

@keyframes float {
  0% { transform: translateY(0px);}
  50% { transform: translateY(-30px);}
  100% { transform: translateY(0px);}
}

.title {
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 3em;
  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 40px 0;
  text-align: center;
  user-select: none;
  background: linear-gradient(90deg, #fffbfba2 40%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation buttons below the title */
.button-group {
  display: flex;
  gap: 24px;
  margin-top: 0;
}

.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;
}

@media (max-width: 600px) {
  .floating-image {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
  }
  .title {
    font-size: 1.4em;
    margin-bottom: 28px;
  }
  .button-group {
    gap: 10px;
  }
  .nav-btn {
    font-size: 0.8em;
    padding: 8px 12px;
  }
}
.copyright {
  position: fixed;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 0.65em;
  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;
}
.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;
}

.secondary-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
  padding-top: 32px;
}

.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, #fffbfba2 40%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}
.rules-list {
  max-width: 600px;
  margin: 30px auto 0 auto;
  background: rgba(20, 20, 20, 0.92); /* More solid, prevents overlay show-through */
  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;
}
.rules-list ol {
  padding-left: 1.3em;
}
.rules-list li {
  margin-bottom: 18px;
  line-height: 1.5;
}
.rules-list b {
  color: #00e1ff;
  font-weight: bold;
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 0.98em;
  letter-spacing: 1px;
}
.info-list {
  max-width: 600px;
  margin: 30px auto 0 auto;
  background: rgba(20, 20, 20, 0.92);
  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 ul, .info-list ol {
  margin-bottom: 22px;
}

.info-list b {
  color: #aaff00;
  font-weight: bold;
  font-family: 'Press Start 2P', 'Arial', monospace;
  font-size: 0.98em;
  letter-spacing: 1px;
}

.info-list a {
  color: #aaff00;
  text-decoration: underline;
}

/* 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, 44, 32, 0.66);
  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: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #aaff00;
}

.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: #aaff00;
  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: #3a7d3a;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 6px;
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 1px;
}

@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;
  }
}