/* Extracted and cleaned CSS from original file. Emojis removed. */
:root {
  --bg0: #0d0a06;
  --bg1: #160e07;
  --bg2: #1f1509;
  --grass: #4e862f;
  --grass-l: #68b83e;
  --grass-d: #2d5519;
  --dirt: #8a5c38;
  --dirt-l: #b07848;
  --dirt-d: #5c3a1e;
  --gold: #ffd000;
  --gold-m: #ff9f00;
  --gold-d: #b05c00;
  --maroon: #3e1602;
  --maroon-l: #6a2804;
  --text: #f0e0c0;
  --text-d: #b09070;
  --card: rgba(22, 14, 7, 0.88);
  --border-g: rgba(255, 208, 0, 0.22);
  --border-gr: rgba(78, 134, 47, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "VT323", monospace;
  font-size: 20px;
  background: var(--bg0);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#starfield canvas {
  width: 100%;
  height: 100%;
  display: block;
}
#floaters {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fblock {
  position: absolute;
  bottom: -40px;
  image-rendering: pixelated;
  opacity: 0;
  border-radius: 2px;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  6% {
    opacity: 0.45;
  }
  94% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(-115vh) rotate(540deg);
    opacity: 0;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 68px;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 2, 0.98) 0%,
    rgba(13, 9, 5, 0.95) 100%
  );
  border-bottom: 3px solid var(--grass);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(78, 134, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
}
.nav-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  image-rendering: pixelated;
  background: transparent;
}
.nav-logo-text {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--maroon);
  line-height: 1.5;
}
.nav-logo-text span {
  display: block;
  font-size: 7px;
  color: var(--grass-l);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  color: var(--text-d);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.15s;
  cursor: pointer;
  background: none;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-color: var(--gold-d);
  background: rgba(255, 208, 0, 0.07);
}
.nav-discord {
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  background: #5865f2;
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  border: 2px solid #7289da;
  transition: all 0.15s;
}
.nav-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
}
.page {
  display: none;
  padding-top: 68px;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}
.page.active {
  display: block;
}
.page-flex {
  display: none;
  padding-top: 68px;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-flex.active {
  display: flex;
}
.cs-banner {
  background: linear-gradient(90deg, var(--maroon), #5c1e02, var(--maroon));
  border-top: 2px solid var(--gold-d);
  border-bottom: 2px solid var(--gold-d);
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
  animation: bannerPulse 3s ease-in-out infinite;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
@keyframes bannerPulse {
  0%,
  100% {
    background: linear-gradient(90deg, var(--maroon), #5c1e02, var(--maroon));
  }
  50% {
    background: linear-gradient(90deg, #5c1e02, var(--maroon), #5c1e02);
  }
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 2.5rem;
  gap: 1.25rem;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-logo {
  width: clamp(200px, 32vw, 360px);
  filter: drop-shadow(0 0 50px rgba(255, 180, 0, 0.3));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-title {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(16px, 3.2vw, 36px);
  color: var(--gold);
  text-shadow: 4px 4px 0 var(--maroon), 0 0 40px rgba(255, 208, 0, 0.3);
  letter-spacing: 2px;
}
.season-badge {
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  background: var(--grass-d);
  border: 2px solid var(--grass);
  color: var(--grass-l);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 1px;
}
.tagline {
  font-size: 26px;
  color: var(--text-d);
  max-width: 540px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ip-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 2px solid var(--border-g);
  border-radius: 4px;
  padding: 0.75rem 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ip-label {
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
  color: var(--text-d);
}
.ip-value {
  font-family: "Press Start 2P", monospace;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.copy-btn {
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  background: var(--grass-d);
  border: 2px solid var(--grass);
  color: var(--grass-l);
  padding: 0.4rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.1s;
  margin-left: 0.5rem;
}
.copy-btn:hover {
  background: var(--grass);
  color: #fff;
}
.copy-btn.copied {
  background: var(--gold-d);
  border-color: var(--gold);
  color: #fff;
}
.edition-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.edition-pill {
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  border: 1px solid;
}
.edition-java {
  background: rgba(78, 134, 47, 0.2);
  border-color: var(--grass);
  color: var(--grass-l);
}
.edition-be {
  background: rgba(138, 92, 56, 0.2);
  border-color: var(--dirt);
  color: var(--dirt-l);
}
.edition-ver {
  background: rgba(62, 22, 2, 0.4);
  border-color: var(--maroon-l);
  color: var(--text-d);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    var(--gold-m) 55%,
    var(--gold-d) 100%
  );
  color: var(--maroon);
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 0 #7a3a00, 0 6px 14px rgba(0, 0, 0, 0.5);
  transition: all 0.1s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #7a3a00, 0 8px 18px rgba(0, 0, 0, 0.5);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #7a3a00;
}
.btn-secondary {
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.18);
  padding: 0.9rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.1s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 208, 0, 0.07);
}
.grass-strip {
  width: 100%;
  height: 28px;
  background: linear-gradient(
    180deg,
    var(--grass-l) 0%,
    var(--grass) 40%,
    var(--grass-d) 70%,
    var(--dirt-d) 100%
  );
  position: relative;
  overflow: hidden;
}
.grass-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--grass-l) 0,
    var(--grass-l) 14px,
    var(--grass) 14px,
    var(--grass) 28px
  );
  opacity: 0.35;
}
.info-hero {
  background: linear-gradient(
    180deg,
    rgba(78, 134, 47, 0.1) 0%,
    transparent 100%
  );
  border-bottom: 1px solid var(--grass-d);
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.info-hero h1 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(13px, 2.2vw, 24px);
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--maroon);
  margin-bottom: 0.75rem;
}
.info-hero p {
  font-size: 22px;
  color: var(--text-d);
}
.info-grid {
  max-width: 1020px;
  margin: 2.5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border-g);
  border-radius: 4px;
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-m), transparent);
}
.info-card h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.info-card p,
.info-card li {
  font-size: 20px;
  color: var(--text-d);
  line-height: 1.7;
}
.info-card ul {
  padding-left: 1rem;
  list-style: "» ";
}
.info-card li {
  margin-bottom: 0.3rem;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0;
}
.stat-row:last-child {
  border-bottom: none;
}
.stat-key {
  color: var(--text-d);
  font-size: 20px;
}
.stat-val {
  color: var(--gold);
  font-family: "Press Start 2P";
  font-size: 8px;
}
.stat-val.green {
  color: var(--grass-l);
}
.stat-val.amber {
  color: var(--gold-m);
}
.not-ready-card {
  background: linear-gradient(
    135deg,
    rgba(62, 22, 2, 0.6) 0%,
    rgba(22, 14, 7, 0.88) 100%
  );
  border: 2px solid var(--gold-d);
  border-radius: 4px;
  padding: 1.75rem;
  text-align: center;
}
.not-ready-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.not-ready-card h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.not-ready-card p {
  font-size: 20px;
  color: var(--text-d);
  line-height: 1.7;
}
.cs-icon {
  font-size: 42px;
  margin-bottom: 0.5rem;
}
.logout-btn {
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  background: rgba(255, 100, 100, 0.15);
  color: #ff6464;
  border: 2px solid #ff6464;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.1s;
  margin-top: 1.5rem;
}
.logout-btn:hover {
  background: rgba(255, 100, 100, 0.3);
  transform: translateY(-2px);
}
.logout-btn:active {
  transform: translateY(0);
}
.admins-section {
  max-width: 1020px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.admins-section h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
  color: var(--grass-l);
  text-shadow: 2px 2px 0 var(--grass-d);
  margin-bottom: 1.5rem;
  text-align: center;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.admin-card {
  background: var(--card);
  border: 2px solid var(--grass-d);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.admin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--grass), transparent);
}
.admin-card:hover {
  border-color: var(--grass-l);
  transform: translateY(-3px);
}
.admin-avatar {
  width: 68px;
  height: 68px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Press Start 2P", monospace;
  font-size: 24px;
  image-rendering: pixelated;
}
.admin-avatar.grass {
  background: var(--grass-d);
  color: var(--grass-l);
  border: 3px solid var(--grass);
}
.admin-avatar.indigo {
  background: #1e1040;
  color: #9d7dff;
  border: 3px solid #6d28d9;
}
.admin-avatar.amber {
  background: var(--maroon);
  color: var(--gold);
  border: 3px solid var(--gold-m);
}
.admin-name {
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  color: var(--text);
}
.admin-role {
  font-size: 19px;
  color: var(--text-d);
}
.admin-badge {
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  background: rgba(78, 134, 47, 0.25);
  color: var(--grass-l);
  border: 1px solid var(--grass-d);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.login-box {
  background: var(--card);
  border: 2px solid var(--border-g);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
.login-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--grass-d),
    var(--gold-m),
    var(--grass-d)
  );
}
.login-title {
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--maroon);
  text-align: center;
  margin-bottom: 0.5rem;
}
.login-sub {
  font-size: 18px;
  color: var(--text-d);
  text-align: center;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
  color: var(--text-d);
  display: block;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: var(--text);
  font-family: "VT323", monospace;
  font-size: 22px;
  padding: 0.6rem 0.8rem;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus {
  border-color: var(--gold-d);
}
.login-btn {
  width: 100%;
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    var(--gold-m) 55%,
    var(--gold-d) 100%
  );
  color: var(--maroon);
  border: none;
  padding: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 4px 0 #7a3a00;
  transition: all 0.1s;
  margin-top: 0.5rem;
}
.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #7a3a00;
}
.login-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #7a3a00;
}
.login-error {
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
  color: #ef4444;
  text-align: center;
  margin-top: 1rem;
  display: none;
}
.login-error.show {
  display: block;
}
.protected-wrap {
  text-align: center;
  padding: 2rem;
}
.protected-wrap h1 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--maroon);
  margin-bottom: 1rem;
}
.protected-wrap p {
  font-size: 22px;
  color: var(--text-d);
}
.files-area {
  width: 100%;
  max-width: 680px;
  margin: 2rem auto 0;
  background: var(--card);
  border: 2px solid var(--border-g);
  border-radius: 4px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.files-icon {
  font-size: 56px;
  opacity: 0.35;
}
.files-empty {
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  color: var(--text-d);
}
.footer {
  position: relative;
  z-index: 2;
  background: rgba(6, 4, 2, 0.96);
  border-top: 3px solid var(--grass-d);
  padding: 1.75rem 2rem;
  text-align: center;
}
.footer p {
  font-size: 18px;
  color: var(--text-d);
}
.footer strong {
  color: var(--gold);
}
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 0 0.9rem;
  }
  .nav-logo-text {
    font-size: 10px;
  }
  .nav-links {
    gap: 0.6rem;
  }
  .nav-link {
    font-size: 7px;
    padding: 0.35rem 0.45rem;
  }
  .nav-discord {
    font-size: 7px;
    padding: 0.35rem 0.55rem;
  }
  .hero {
    padding: 1rem 0.75rem;
  }
  .tagline {
    font-size: clamp(18px, 4vw, 26px);
  }
  .ip-box {
    padding: 0.5rem 0.75rem;
    flex-direction: column;
  }
  .ip-label {
    margin-bottom: 0.25rem;
  }
  .ip-value {
    font-size: clamp(10px, 3vw, 14px);
  }
  .copy-btn {
    margin-left: 0;
    margin-top: 0.25rem;
  }
  .edition-row {
    gap: 0.4rem;
  }
  .edition-pill {
    font-size: 6px;
    padding: 0.25rem 0.5rem;
  }
  .hero-btns {
    gap: 0.75rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1rem;
    font-size: 8px;
  }
  .cs-banner {
    padding: 0.4rem 0.5rem;
    font-size: 8px;
    letter-spacing: 1px;
  }
  .info-grid {
    padding: 0 1rem;
  }
  .admin-grid {
    padding: 0 1rem;
  }
  .admins-section {
    padding: 0 1rem;
  }
  .info-card {
    padding: 1.25rem;
  }
  .login-box {
    margin: 0 1rem;
  }
  .protected-wrap {
    padding: 1rem;
  }
}
