body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

nav {
  background: #222;
  padding: 10px 0;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: #00ffcc;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #00ffcc;
  color: #111;
}

.banner {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

h1 {
  font-size: 2em;
  margin: 10px 0 0 0;
  color: #00ffcc;
}

.subtitle {
  font-size: 1em;
  margin: 0 0 20px 0;
  color: #33ffcc;
}

.server-box, .discord-section, .status-section, .shop-section, .staff-list, .rules-list, .unban-form {
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding: 15px;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffcc44;
  text-align: left;
}

.server-ip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.server-ip button {
  background: #00ffcc;
  border: none;
  color: #111;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
}

.discord-button {
  display: inline-block;
  background: #7289da;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.3s;
}

.discord-button:hover {
  background: #5b6eae;
}

.staff-list ul,
.rules-list ol,
.shop-section ul {
  padding-left: 20px;
  font-size: 12px;
}

.shop-section ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-section button {
  background: #00ffcc;
  border: none;
  color: #111;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
}

.unban-form label {
  font-size: 10px;
}

.unban-form input[type="text"],
.unban-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  margin-top: 5px;
}

.unban-form button {
  margin-top: 10px;
  background: #00ffcc;
  border: none;
  color: #111;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
}

footer {
  padding: 20px 0;
  background: #222;
  font-size: 10px;
  color: #00ffcc;
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .server-box,
  .discord-section,
  .status-section,
  .shop-section,
  .staff-list,
  .rules-list,
  .unban-form {
    margin: 0 10px 40px 10px;
  }
}
