body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url("../media/MCServerZone_Webpage_Background.png") no-repeat center center fixed;
  background-size: cover; /* makes it scale to fill */
  background-color: #0a0a0a; /* dark fallback */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32"><text y="24" font-size="24">🎮</text></svg>') 16 16, auto;
}

main {
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
}


header {
  color: white;
  padding: 1px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

footer {
  color: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  bottom: 0;
  font-size: 14px;
}


header .filter-bar {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-chip {
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid #222;
  color: #d6fbe6;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-chip:hover {
  background: rgba(40, 40, 40, 0.9);
  border-color: #2a2a2a;
  transform: translateY(-1px);
}

.filter-chip.active {
  background: #00e6a0;
  color: #000;
  border-color: #00ffb2;
}

.auth-buttons a {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #00ff9d;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}

.auth-buttons a:hover {
  background: #00cc7a;
}

.announcement {
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.announcement.info    { margin-top: 10px; background:#0d3a5c; color:#cde8ff; }
.announcement.success { margin-top: 10px; background:#0b5033; color:#b8ffd5; }
.announcement.warning { margin-top: 10px; background:#5c430d; color:#ffe6b8; }
.announcement.danger  { margin-top: 10px; background:#5c0d1a; color:#ffb8c4; }